From jianglizhou at google.com Sat Feb 1 00:29:29 2025 From: jianglizhou at google.com (Jiangli Zhou) Date: Fri, 31 Jan 2025 16:29:29 -0800 Subject: Jtreg tests with JNI native code on static JDK Message-ID: With the recently enhancements in JDK mainline (thanks for all contributions to the related work), it's able to build a static-jdk image (support a static-jdk/bin/java launcher executable statically linked with JDK/hotspot native), and able to execute jtreg tests on the static-jdk image. While the JDK mainline is reaching this milestone, I think it would be good to start a conversation to seed the brainstorm on jtreg testing on static-jdk image, specifically for tests with JNI natives. For jtreg tests with native, the native code has normally been linked into shared libraries. JEPS 178 enhanced JNI specification to support statically linked native libraries. As a result, we could build the jtreg test native code into static libraries and link those with the static-jdk/bin/java launcher. An obvious alternative is to continue building the jtreg test native code in shared libraries for testing on static-jdk images. The alternative is feasible (the current leyden/tree/hermetic-java-runtime branch can be used to demonstrate this capability). It's probably also a less disruptive solution for running jtreg tests on static JDK using today's existing testing framework/setup. There are some pre-existing assumptions about dynamic loading and linking native libraries in the tests (we have addressed and resolved many of those in JDK and VM in JDK mainline already). For both approaches described in above paragraph, we would need to remove these assumptions from the jtreg tests regardless which approach is used for building/packaging the test native code. Would be great to see this brief writeup brings in more thoughts and discussions on the Jtreg testing strategy on static JDK. Thanks! Best, Jiangli -------------- next part -------------- An HTML attachment was scrubbed... URL: From shade at openjdk.org Sat Feb 1 09:57:34 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Sat, 1 Feb 2025 09:57:34 GMT Subject: RFR: 8349181: [leyden] tools/sincechecker/modules/java.base/JavaBaseCheckSince.java fails Message-ID: Trivial testbug fix. Additional testing: - [x] MacOS AArch64 server fastdebug, test now passes ------------- Commit messages: - Fix Changes: https://git.openjdk.org/leyden/pull/31/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=31&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8349181 Stats: 3 lines in 1 file changed: 1 ins; 0 del; 2 mod Patch: https://git.openjdk.org/leyden/pull/31.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/31/head:pull/31 PR: https://git.openjdk.org/leyden/pull/31 From shade at openjdk.org Sat Feb 1 11:23:02 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Sat, 1 Feb 2025 11:23:02 GMT Subject: RFR: 8348960: [leyden] compiler/c1/TestConcurrentPatching.java is stuck [v2] In-Reply-To: References: Message-ID: <09UPtNLWvOw3cb1R2sC7p3O6jJxF5llIaWRry90d5y8=.fa04dff4-0ea1-4448-bbbf-85846d72e46a@github.com> On Fri, 31 Jan 2025 19:46:45 GMT, Vladimir Ivanov wrote: >> Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision: >> >> Avoid recursion in more bullet-proof way > > I like the version with extra `purge_stale_tasks()` in `CompileQueue::get`. Releasing MCQ lock there looks benign. 500x runs of `TestConcurrentPatching.java` passes. `all` test suite passes without regressions (there are some Leyden-specific problems that reproduce even without this patch). I would like to integrate this version, if you agree @iwanowww? ------------- PR Comment: https://git.openjdk.org/leyden/pull/30#issuecomment-2628911461 From asmehra at redhat.com Sat Feb 1 23:07:02 2025 From: asmehra at redhat.com (Ashutosh Mehra) Date: Sat, 1 Feb 2025 18:07:02 -0500 Subject: Sketched breakdown of task for implementing code save/restore in Leyden repo and mainline In-Reply-To: References: <1c18403b-c778-4684-b773-5f0673881870@redhat.com> Message-ID: There is also the "portability" aspect of the compiled code. I know it has come up for discussion in the past, but I don't remember if we decided to do anything about it. If we are planning to move things to the mainline, then probably this is a good time to revisit it. - Ashutosh Mehra On Fri, Jan 31, 2025 at 1:55?PM Vladimir Kozlov wrote: > Thank you, Andrew, for layout our future steps. > > Here is AOT wishlist RFE John created few months ago: > https://bugs.openjdk.org/browse/JDK-8343023 > > We finished some items listed in this RFE and are still working on > others. May be we need to update it with new items we discussed. > > I think we should file new RFEs (if we don't have one) for tasks you > listed. Current AOT RFEs list [1] > > My comments are inside. > > [1] > > https://bugs.openjdk.org/issues/?jql=project%20%3D%20JDK%20AND%20issuetype%20%3D%20Enhancement%20AND%20status%20in%20(Open%2C%20%22In%20Progress%22)%20AND%20labels%20%3D%20leyden > > > On 1/31/25 9:08 AM, Andrew Dinn wrote: > > Hi all, > > > > Following up on our discussion in yesterday's meeting I have sketched > > below a list of the various tasks we need to perform to implement code > > save/restore, both immediately with the hope of getting them into jdk25 > > and in the longer term. The list includes some things it would be > > preferable to prototype in the Leyden premain branch before transferring > > to mainline, other migration tasks that serve to transfer existing > > protptype code from premain to mainline and more speculative tasks that > > are unlikely to be achievable for jdk25. > > > > Please review and feel free to offer additions and corrections -- I am > > not at all sure I have it all down and/or correct. > > > > n.b. one general note that applies to all migration or direct, mainline > > implementation tasks is that we need to consider how we handle CPUs > > other than aarch64/x86_64 and OSes other than Linux. Even if we leave > > AOT code cache functionality 'unimplemented' for other ports we will > > still need to ensure that the code we migrate will successfully allow > > for missing ('not yet available') implementations. When performing the > > migration tasks we may well want/need to pull in devs from those other > > ports to, at least, help achieve that minimum goal or, perhaps, > > implement some subset of the relevant functionality. > > Agree. And we do that already during mainline PR reviews. > > > > > regards, > > > > > > Andrew Dinn > > ----------- > > > > > > Leyden repo preliminaries: > > -------------------------- > > > > Modify SCCache implementation to save/restore code in the AOT cache file > > with metadata, heap data etc. > > > > > > Complete save/restore of i2c2i adapters and associated index > > > > Complete direct install of mapped AOT adapter code into CodeCache > > > > Complete direct install of nmethod code into CodeCache > > > > Rework save/restore of runtime, c1, opto and stubgen blobs & stubs after > > merge of mainline stub cleanup > > > > Implement save/restore of other demand-generated linkage stubs (i/vtable > > adapters, method handle adapters, ICCache, ???) > > We have mainline PR in review to move Relocation section, oops and > metadata sections which requires patching out of CodeCache: > https://github.com/openjdk/jdk/pull/21276 > > > > > > > Migration steps: > > ---------------- > > I think we should start with replacing separate file for AOT cached code > with space provided by CDS to have only one file for all cached > information. > > > > > Migrate SCCache support to save/restore i2c2i adapters and associated > > lookup tables and relink methods with correct adapters > > > > Incrementally extend SCCache to support save/restore of other demand- > > geerated adapters and associated lookup tables > > > > Implement save/restore of runtime, c1, opto and stubgen blobs & stubs > > > > Implement save/restore of special case nmethods and associated index > > info (i.e. compiled MethodHandle adapter nmethods associated with Java > > MethodTypes and associated Java lookup table -- any others) > > > > Implement save/restore of general nmethods > > > > > Implement prelinking of nmethod -> nmethod call sites > > > > Implement prelinking of nmethod -> stub call sites > > https://bugs.openjdk.org/browse/JDK-8343790 > > > > > > > More speculative improvements: > > ------------------------------ > > > > (do we prototype these in premain before migrating?) > > Yes, we should prototype it in `premain` branch. > > > > Adjust code generation to store runtime addresses in nmethod constant > > section and use pc-relative loads (minimizing relocs) -- requires new > > relocs for gloal addresses and/or extending CDS link patching to include > > extra 'code address' pass. > > > > Investigate further use of 'code cache' global constant section instead > > of per nmethod constant sections. > > > > Investigate use of compressed nmethod 'debug info' to minimize size of > > AOT cache (n.b. best to use it compressed in mainline with or without > > AOT so save/restore gets it for free) > > > Thanks, > Vladimir K > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From liach at openjdk.org Sat Feb 1 23:29:01 2025 From: liach at openjdk.org (Chen Liang) Date: Sat, 1 Feb 2025 23:29:01 GMT Subject: RFR: 8349181: [leyden] tools/sincechecker/modules/java.base/JavaBaseCheckSince.java fails In-Reply-To: References: Message-ID: On Sat, 1 Feb 2025 09:52:57 GMT, Aleksey Shipilev wrote: > Trivial testbug fix. > > Additional testing: > - [x] MacOS AArch64 server fastdebug, test now passes I think @nizarbenalla had added similar support for Valhalla-specific new APIs, so using the current version is not the best approach. Forgot where this is handled exactly unfortunately. ------------- PR Comment: https://git.openjdk.org/leyden/pull/31#issuecomment-2629158760 From nbenalla at openjdk.org Sun Feb 2 01:55:58 2025 From: nbenalla at openjdk.org (Nizar Benalla) Date: Sun, 2 Feb 2025 01:55:58 GMT Subject: RFR: 8349181: [leyden] tools/sincechecker/modules/java.base/JavaBaseCheckSince.java fails In-Reply-To: References: Message-ID: On Sat, 1 Feb 2025 09:52:57 GMT, Aleksey Shipilev wrote: > Trivial testbug fix. > > Additional testing: > - [x] MacOS AArch64 server fastdebug, test now passes Thanks for the ping. David Simms added that support in the Valhalla repo https://github.com/openjdk/valhalla/pull/1312, so I didn't end adding it to mainline. I will try to add support for non-numeric values this week, otherwise you will need to up update the `@since` info every 6 months. ------------- PR Comment: https://git.openjdk.org/leyden/pull/31#issuecomment-2629198718 From jorn.vernee at oracle.com Mon Feb 3 14:06:56 2025 From: jorn.vernee at oracle.com (Jorn Vernee) Date: Mon, 3 Feb 2025 15:06:56 +0100 Subject: Jtreg tests with JNI native code on static JDK In-Reply-To: References: Message-ID: <5a641175-d37c-40c9-882f-d25140134be3@oracle.com> Statically linking native test libraries seems strange to me. If we think of a test case as a user of the Java runtime, it should not matter whether the Java runtime is a hermetic image or not, and dynamic linking of native libraries should continue to work as before, I think. Unless I'm misunderstanding the goal of hermetic images, it is still possible to dynamically load e.g. jar files with a hermetic Java image, right? Those jar files could contain/depend on dynamic native libraries, so I think either way those need to be supported. > There are some pre-existing assumptions about dynamic?loading and linking native libraries?in the tests (we have addressed and resolved many of those in JDK and VM in JDK mainline already). For both approaches described in above paragraph, we would need to remove these assumptions from the jtreg tests regardless which approach is used for building/packaging the test native code. Could you give some examples of the assumptions you're talking about here? Jorn On 1-2-2025 01:29, Jiangli Zhou wrote: > With the recently enhancements in JDK mainline (thanks for all > contributions to the related work), it's able to build a static-jdk > image (support a static-jdk/bin/java launcher executable statically > linked with JDK/hotspot native), and able to execute jtreg tests on > the static-jdk image. While the JDK mainline is reaching this > milestone, I think it would be good to start a conversation to seed > the brainstorm on jtreg testing on static-jdk image, specifically for > tests with JNI natives. > > For jtreg tests with native, the native code has normally been linked > into shared libraries. JEPS 178 > ?enhanced JNI specification to support > statically linked native libraries. As a result, we could build the > jtreg test native code into static libraries and link those with the > static-jdk/bin/java launcher. An obvious alternative is to continue > building the jtreg test native code in shared libraries for testing on > static-jdk images. The alternative is feasible (the current > leyden/tree/hermetic-java-runtime > ?branch > can be used to demonstrate this capability). It's probably also a less > disruptive solution for running jtreg tests on static JDK using > today's existing testing framework/setup. > > There are some pre-existing assumptions about dynamic?loading and > linking native libraries?in the tests (we have addressed and resolved > many of those in JDK and VM in JDK mainline already). For both > approaches described in above paragraph, we would need to remove these > assumptions from the jtreg tests regardless which approach is used for > building/packaging the test native code. Would be great to see this > brief writeup brings in more thoughts and discussions on the Jtreg > testing strategy?on static JDK.? Thanks! > > Best, > Jiangli > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vlivanov at openjdk.org Mon Feb 3 17:46:11 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Mon, 3 Feb 2025 17:46:11 GMT Subject: RFR: 8348960: [leyden] compiler/c1/TestConcurrentPatching.java is stuck [v3] In-Reply-To: References: Message-ID: On Fri, 31 Jan 2025 21:40:44 GMT, Aleksey Shipilev wrote: >> This is seen in GHA, and reproduces well on my machine as well: >> >> >> $ CONF=linux-x86_64-server-fastdebug make images test TEST=compiler/c1/TestConcurrentPatching.java >> >> >> >> Test runs with `-Xcomp`. gdb "thread apply all bt" shows the compilers are idle. Supplying `-XX:-UseLockFreeCompileQueues` makes the test pass. I believe there is a bug in `UseLockFreeCompileQueues` in leyden repo. >> >> The comment hopefully explains what happens here. This is a corner case that seems to reproduce on the test that runs `-Xcomp` with a very few compilations. >> >> Additional testing: >> - [x] GHA >> - [x] Linux x86_64 server fastdebug, `compiler/c1/TestConcurrentPatching.java`, 100x > > Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision: > > Move the fix to CompileTask.get Looks good. src/hotspot/share/compiler/compileBroker.cpp line 421: > 419: assert(_lock->owned_by_self(), "must own lock"); > 420: > 421: CompileTask* task; I assume these changes aren't strictly needed (`_queue` is always drained under the lock). ------------- Marked as reviewed by vlivanov (Committer). PR Review: https://git.openjdk.org/leyden/pull/30#pullrequestreview-2590609080 PR Review Comment: https://git.openjdk.org/leyden/pull/30#discussion_r1939787326 From jianglizhou at google.com Mon Feb 3 19:42:10 2025 From: jianglizhou at google.com (Jiangli Zhou) Date: Mon, 3 Feb 2025 11:42:10 -0800 Subject: Jtreg tests with JNI native code on static JDK In-Reply-To: <5a641175-d37c-40c9-882f-d25140134be3@oracle.com> References: <5a641175-d37c-40c9-882f-d25140134be3@oracle.com> Message-ID: Thanks for the thoughts, Jorn! On Mon, Feb 3, 2025 at 6:07?AM Jorn Vernee wrote: > Could you give some examples of the assumptions you're talking about here? > One example is test/hotspot/jtreg/runtime/jni/atExit/TestAtExit.java. When building libatExt, it explicitly links with libjvm.so (e.g. on Linux), which becomes a recorded dependency of libatExit.so: https://github.com/openjdk/jdk/blob/618c5eb27b4c719afd577b690e6bcb21a45fcb0d/make/test/JtregNativeHotspot.gmk#L883C40-L883C49 ``` BUILD_HOTSPOT_JTREG_LIBRARIES_JDK_LIBS_libatExit := java.base:libjvm ``` ``` $ ldd ./build/linux-x86_64-server-release/support/test/hotspot/jtreg/native/lib/libatExit.so linux-vdso.so.1 (0x00007fb80017c000) libjvm.so => (snip) ... /lib64/ld-linux-x86-64.so.2 (0x00007fb80017e000) ``` Runtime linker and loader would resolve and load the dependency `libjvm.so` when loading `libatExit.so`. As static-jdk does not provide `libjvm.so`, it would fail when running the test using the static-jdk. I filed https://bugs.openjdk.org/browse/JDK-8349178. The good thing is so far testing only has found just a few such cases in Tier1 tests. Best regards, Jiangli From david.holmes at oracle.com Tue Feb 4 10:26:12 2025 From: david.holmes at oracle.com (David Holmes) Date: Tue, 4 Feb 2025 20:26:12 +1000 Subject: Jtreg tests with JNI native code on static JDK In-Reply-To: References: <5a641175-d37c-40c9-882f-d25140134be3@oracle.com> Message-ID: <55371978-848b-4f92-856f-813bd2216dc9@oracle.com> Hi Jiangli, On 4/02/2025 5:42 am, Jiangli Zhou wrote: > Thanks for the thoughts, Jorn! > > On Mon, Feb 3, 2025 at 6:07?AM Jorn Vernee wrote: > >> Could you give some examples of the assumptions you're talking about here? >> > > One example is test/hotspot/jtreg/runtime/jni/atExit/TestAtExit.java. > When building libatExt, it explicitly links with libjvm.so (e.g. on > Linux), which becomes a recorded dependency of libatExit.so: > > https://github.com/openjdk/jdk/blob/618c5eb27b4c719afd577b690e6bcb21a45fcb0d/make/test/JtregNativeHotspot.gmk#L883C40-L883C49 > ``` > BUILD_HOTSPOT_JTREG_LIBRARIES_JDK_LIBS_libatExit := java.base:libjvm > ``` So does this mean that any test (or application) that uses JNI and has to link to libjvm will need to be modified to work with a statically linked JDK? David ----- > ``` > $ ldd ./build/linux-x86_64-server-release/support/test/hotspot/jtreg/native/lib/libatExit.so > linux-vdso.so.1 (0x00007fb80017c000) > libjvm.so => (snip) > ... > /lib64/ld-linux-x86-64.so.2 (0x00007fb80017e000) > ``` > > Runtime linker and loader would resolve and load the dependency > `libjvm.so` when loading `libatExit.so`. As static-jdk does not > provide `libjvm.so`, it would fail when running the test using the > static-jdk. I filed https://bugs.openjdk.org/browse/JDK-8349178. > > The good thing is so far testing only has found just a few such cases > in Tier1 tests. > > Best regards, > Jiangli From shade at openjdk.org Tue Feb 4 13:46:38 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 4 Feb 2025 13:46:38 GMT Subject: RFR: 8348960: [leyden] compiler/c1/TestConcurrentPatching.java is stuck [v3] In-Reply-To: References: Message-ID: On Fri, 31 Jan 2025 21:40:44 GMT, Aleksey Shipilev wrote: >> This is seen in GHA, and reproduces well on my machine as well: >> >> >> $ CONF=linux-x86_64-server-fastdebug make images test TEST=compiler/c1/TestConcurrentPatching.java >> >> >> >> Test runs with `-Xcomp`. gdb "thread apply all bt" shows the compilers are idle. Supplying `-XX:-UseLockFreeCompileQueues` makes the test pass. I believe there is a bug in `UseLockFreeCompileQueues` in leyden repo. >> >> The comment hopefully explains what happens here. This is a corner case that seems to reproduce on the test that runs `-Xcomp` with a very few compilations. >> >> Additional testing: >> - [x] GHA >> - [x] Linux x86_64 server fastdebug, `compiler/c1/TestConcurrentPatching.java`, 100x > > Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision: > > Move the fix to CompileTask.get Thanks! ------------- PR Comment: https://git.openjdk.org/leyden/pull/30#issuecomment-2634009071 From duke at openjdk.org Tue Feb 4 13:46:38 2025 From: duke at openjdk.org (duke) Date: Tue, 4 Feb 2025 13:46:38 GMT Subject: RFR: 8348960: [leyden] compiler/c1/TestConcurrentPatching.java is stuck [v3] In-Reply-To: References: Message-ID: On Fri, 31 Jan 2025 21:40:44 GMT, Aleksey Shipilev wrote: >> This is seen in GHA, and reproduces well on my machine as well: >> >> >> $ CONF=linux-x86_64-server-fastdebug make images test TEST=compiler/c1/TestConcurrentPatching.java >> >> >> >> Test runs with `-Xcomp`. gdb "thread apply all bt" shows the compilers are idle. Supplying `-XX:-UseLockFreeCompileQueues` makes the test pass. I believe there is a bug in `UseLockFreeCompileQueues` in leyden repo. >> >> The comment hopefully explains what happens here. This is a corner case that seems to reproduce on the test that runs `-Xcomp` with a very few compilations. >> >> Additional testing: >> - [x] GHA >> - [x] Linux x86_64 server fastdebug, `compiler/c1/TestConcurrentPatching.java`, 100x > > Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision: > > Move the fix to CompileTask.get @shipilev Your change (at version f8a10da9ae80c4edf98cd9510388fefc1794806e) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/30#issuecomment-2634013080 From shade at openjdk.org Tue Feb 4 13:46:38 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 4 Feb 2025 13:46:38 GMT Subject: RFR: 8348960: [leyden] compiler/c1/TestConcurrentPatching.java is stuck [v3] In-Reply-To: References: Message-ID: On Mon, 3 Feb 2025 17:43:26 GMT, Vladimir Ivanov wrote: >> Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision: >> >> Move the fix to CompileTask.get > > src/hotspot/share/compiler/compileBroker.cpp line 421: > >> 419: assert(_lock->owned_by_self(), "must own lock"); >> 420: >> 421: CompileTask* task; > > I assume these changes aren't strictly needed (`_queue` is always drained under the lock). While `_queue` is drained under the lock, it is being _added to_ without a lock, which means we are using `empty` under concurrent queue modification, which is, per NBQ docs, not guaranteed to work well. (ABA problems.) ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/30#discussion_r1941198326 From jianglizhou at google.com Tue Feb 4 17:59:43 2025 From: jianglizhou at google.com (Jiangli Zhou) Date: Tue, 4 Feb 2025 09:59:43 -0800 Subject: Jtreg tests with JNI native code on static JDK In-Reply-To: <55371978-848b-4f92-856f-813bd2216dc9@oracle.com> References: <5a641175-d37c-40c9-882f-d25140134be3@oracle.com> <55371978-848b-4f92-856f-813bd2216dc9@oracle.com> Message-ID: On Tue, Feb 4, 2025 at 2:26?AM David Holmes wrote: > > Hi Jiangli, > > On 4/02/2025 5:42 am, Jiangli Zhou wrote: > > Thanks for the thoughts, Jorn! > > > > On Mon, Feb 3, 2025 at 6:07?AM Jorn Vernee wrote: > > > >> Could you give some examples of the assumptions you're talking about here? > >> > > > > One example is test/hotspot/jtreg/runtime/jni/atExit/TestAtExit.java. > > When building libatExt, it explicitly links with libjvm.so (e.g. on > > Linux), which becomes a recorded dependency of libatExit.so: > > > > https://github.com/openjdk/jdk/blob/618c5eb27b4c719afd577b690e6bcb21a45fcb0d/make/test/JtregNativeHotspot.gmk#L883C40-L883C49 > > ``` > > BUILD_HOTSPOT_JTREG_LIBRARIES_JDK_LIBS_libatExit := java.base:libjvm > > ``` > > So does this mean that any test (or application) that uses JNI and has > to link to libjvm will need to be modified to work with a statically > linked JDK? David, please see my responses in https://github.com/openjdk/jdk/pull/23431#issuecomment-2634531490: JNI functions are already dynamically called. E.g. in the same test here: res = (*jvm)->AttachCurrentThread(jvm, (void **)&env, NULL); We don't need to change those at all to work on static-jdk. The existing design of JNI functions can work on both dynamic JDK and static JDK. The calls fixed by this PR are the very few exceptions that do not follow the design principle. I do think we should fix them by following the right patterns/conventions. Note LoadJavaVM in JDK code calls these functions 'properly', see jdk/src/java.base/unix/native/libjli/java_md.c. So far I've only found this test in hotspot tier1 and libExplicitAttach (AttachTest_id0) in JDK tier1 with the issue. @dholmes-ora If we don't go with this change, do you have any other suggestions? One other possible alternative that I can think of is using weak symbols, however I think that's no better. and https://github.com/openjdk/jdk/pull/23431#issuecomment-2634595988: Also to point it out if it's not clear already, libjvm.so is implementation detail. One cannot safely exist at runtime. The static JDK case is a good example. Best, Jiangli > > David > ----- > > > ``` > > $ ldd ./build/linux-x86_64-server-release/support/test/hotspot/jtreg/native/lib/libatExit.so > > linux-vdso.so.1 (0x00007fb80017c000) > > libjvm.so => (snip) > > ... > > /lib64/ld-linux-x86-64.so.2 (0x00007fb80017e000) > > ``` > > > > Runtime linker and loader would resolve and load the dependency > > `libjvm.so` when loading `libatExit.so`. As static-jdk does not > > provide `libjvm.so`, it would fail when running the test using the > > static-jdk. I filed https://bugs.openjdk.org/browse/JDK-8349178. > > > > The good thing is so far testing only has found just a few such cases > > in Tier1 tests. > > > > Best regards, > > Jiangli > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kvn at openjdk.org Tue Feb 4 18:10:23 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Tue, 4 Feb 2025 18:10:23 GMT Subject: git: openjdk/leyden: premain: 8348960: [leyden] compiler/c1/TestConcurrentPatching.java is stuck Message-ID: Changeset: 59ef37a4 Branch: premain Author: Aleksey Shipilev Committer: Vladimir Kozlov Date: 2025-02-04 18:08:25 +0000 URL: https://git.openjdk.org/leyden/commit/59ef37a46afa55a96196780e6b3606bd67a1cbcd 8348960: [leyden] compiler/c1/TestConcurrentPatching.java is stuck Reviewed-by: adinn, vlivanov ! src/hotspot/share/compiler/compileBroker.cpp From shade at openjdk.org Tue Feb 4 18:11:49 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 4 Feb 2025 18:11:49 GMT Subject: Integrated: 8348960: [leyden] compiler/c1/TestConcurrentPatching.java is stuck In-Reply-To: References: Message-ID: On Wed, 29 Jan 2025 18:19:15 GMT, Aleksey Shipilev wrote: > This is seen in GHA, and reproduces well on my machine as well: > > > $ CONF=linux-x86_64-server-fastdebug make images test TEST=compiler/c1/TestConcurrentPatching.java > > > > Test runs with `-Xcomp`. gdb "thread apply all bt" shows the compilers are idle. Supplying `-XX:-UseLockFreeCompileQueues` makes the test pass. I believe there is a bug in `UseLockFreeCompileQueues` in leyden repo. > > The comment hopefully explains what happens here. This is a corner case that seems to reproduce on the test that runs `-Xcomp` with a very few compilations. > > Additional testing: > - [x] GHA > - [x] Linux x86_64 server fastdebug, `compiler/c1/TestConcurrentPatching.java`, 100x This pull request has now been integrated. Changeset: 59ef37a4 Author: Aleksey Shipilev Committer: Vladimir Kozlov URL: https://git.openjdk.org/leyden/commit/59ef37a46afa55a96196780e6b3606bd67a1cbcd Stats: 19 lines in 1 file changed: 17 ins; 0 del; 2 mod 8348960: [leyden] compiler/c1/TestConcurrentPatching.java is stuck Reviewed-by: adinn, vlivanov ------------- PR: https://git.openjdk.org/leyden/pull/30 From vlivanov at openjdk.org Tue Feb 4 18:29:34 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Tue, 4 Feb 2025 18:29:34 GMT Subject: RFR: 8348960: [leyden] compiler/c1/TestConcurrentPatching.java is stuck [v3] In-Reply-To: References: Message-ID: On Tue, 4 Feb 2025 13:43:27 GMT, Aleksey Shipilev wrote: >> src/hotspot/share/compiler/compileBroker.cpp line 421: >> >>> 419: assert(_lock->owned_by_self(), "must own lock"); >>> 420: >>> 421: CompileTask* task; >> >> I assume these changes aren't strictly needed (`_queue` is always drained under the lock). > > While `_queue` is drained under the lock, it is being _added to_ without a lock, which means we are using `empty` under concurrent queue modification, which is, per NBQ docs, not guaranteed to work well. (ABA problems.) Thanks for the clarification. I missed that `NonblockingQueue::empty()` is not thread-safe. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/30#discussion_r1941699216 From jianglizhou at google.com Tue Feb 4 22:30:29 2025 From: jianglizhou at google.com (Jiangli Zhou) Date: Tue, 4 Feb 2025 14:30:29 -0800 Subject: Add static-jdk build in GHA Message-ID: With the current state of JDK mainline for static JDK support, it's a good time to add 'static-jdk' build as a minimum/initial pre-integration check in GHA. It helps catch regressions accidentally introduced in any new changes that could break the static JDK build (e.g. duplicate symbols in different JDK native libraries). We have also discussed this topic during the on-going hermetic Java zoom meetings with Ron, Alan, Magnus and others. As a starting point, we can add release and fastdebug static-jdk builds on linux-x64 for now, and then expand to other platforms when appropriate. Here are some measurements that I collected from building jdk-image and static-jdk-image for release and fastdebug binaries on my local linux x64 machine (with gcc as the default). For release build, building jdk-image and static-jdk-image takes about the same real time. For fastdebug, building a static-jdk-image takes ~1m more than building a jdk-image on my linux machine. Thoughts and additional suggestions are welcome! Clean builds ========== jdk-image: ---------------- release: real 2m20.327s fastdebug: real 3m0.262s static-jdk-image: ---------------------- release: real 2m51.024s fastdebug: real 4m11.928s Best, Jiangli -------------- next part -------------- An HTML attachment was scrubbed... URL: From duke at openjdk.org Wed Feb 5 07:05:30 2025 From: duke at openjdk.org (duke) Date: Wed, 5 Feb 2025 07:05:30 GMT Subject: git: openjdk/leyden: premain: Rework MTD caching Message-ID: Changeset: 01aa0973 Branch: premain Author: Igor Veresov Date: 2025-02-04 23:03:26 +0000 URL: https://git.openjdk.org/leyden/commit/01aa0973d4b1051dc592c96e17f86fc0681378ff Rework MTD caching ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/methodCounters.cpp ! src/hotspot/share/oops/methodCounters.hpp ! src/hotspot/share/oops/trainingData.cpp From shade at openjdk.org Wed Feb 5 09:30:44 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 5 Feb 2025 09:30:44 GMT Subject: RFR: 8349181: [leyden] tools/sincechecker/modules/java.base/JavaBaseCheckSince.java fails In-Reply-To: References: Message-ID: On Sat, 1 Feb 2025 09:52:57 GMT, Aleksey Shipilev wrote: > Trivial testbug fix. > > Additional testing: > - [x] MacOS AArch64 server fastdebug, test now passes All right, thanks! I see https://github.com/openjdk/jdk/pull/23447 that implements non-numeric literals. Meanwhile, I think we can push this change to Leyden repo to make tests cleaner, and then replace `@since` with non-numeric literal. ------------- PR Comment: https://git.openjdk.org/leyden/pull/31#issuecomment-2636188995 From shade at openjdk.org Wed Feb 5 09:39:33 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 5 Feb 2025 09:39:33 GMT Subject: RFR: Save/load i2c2i adapters [v13] In-Reply-To: References: Message-ID: On Tue, 28 Jan 2025 18:26:44 GMT, Ashutosh Mehra wrote: >> This is an attempt to save and load i2c2i adapters along with the adapter handler table. >> There are mainly two parts to this change: >> 1. Storing of adapter code in the SCCache or AOT code cache. >> 2. Storing of adapter handler table in the AOT cache. >> >> Adapter handler table is a map from AdapterFingerPrint to AdapterHnadlerEntry. To store them in AOT cache, AdapterFingerPrint and AdapterHandlerEntry are updated to MetaspaceObj. Both these entities are discovered and added to the cache while processing the Method. When storing the adapter handler table, only the entries that have already been archived are considered. This allows pruning of AdapterHnadlerEntry that may be only reachable through a Method that is not eligible to be archived. >> >> An AdapterHandlerEntry has pointer to the adapter code. Because the AdapterHandlerEntry and the adapter code are stored in separate archives, this link between the AdapterHandlerEntry and the adapter code needs to be removed (see AdapterHandlerEntry::remove_unshareable_info()). >> During the production run, as the methods in the AOT cache are adopted, the AdapterHandlerEntry is linked back to the adapter code (see AdapterHandlerEntry::restore_unshareable_info). >> >> All this code is guarded by -XX:[+-]ArchiveAdapters option which defaults to false, but is set to true in CDSConfig during the assembly phase. >> >> Other changes worth mentioning: >> 1. Changes to the SCCache infrastructure to make it possible to store and load adapter code. (Thanks to @adinn) >> 2. Updating AdapterFingerPrint hashing algorithm to avoid collisions. If there is any collision, then it will prevent finding the adapter code in the SCCache. (Again courtesy of @adinn) >> >> Thanks to @adinn for providing many of these changes. >> >> Performance: >> -Xlog:init shows time taken for linking of Methods and making adapters. An example output is: >> >> ClassLoader: >> clinit: 150us / 4612 events >> link methods: 28980us / 176893 events >> method adapters: 15378us / 697 events >> >> Save/load of adapters seem to have improved these stats. >> >> | Quarkus | -ArchiveAdapters | +ArchiveAdapters | >> |---|---|---| >> | link methods | 12214us / 58913 events | 2700us / 58913 events | >> | method adapters | 7793us / 607 events | 4402us / 38 events | >> >> | Spring-petclinic | -ArchiveAdapters | +ArchiveAdapters | >> |---|---|---| >> | link methods | 28980us / 176893 events | 7485us / 176893 events |... > > Ashutosh Mehra has updated the pull request incrementally with two additional commits since the last revision: > > - Fix compile failure in minimal build > > Signed-off-by: Ashutosh Mehra > - Do not search archived adapter table during assembly phase > > Signed-off-by: Ashutosh Mehra Pull from current `premain` to get the compile queue bugfix, that should turn GHAs green. ------------- PR Comment: https://git.openjdk.org/leyden/pull/25#issuecomment-2636209492 From shade at openjdk.org Wed Feb 5 12:23:30 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 5 Feb 2025 12:23:30 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation Message-ID: Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. Additional testing: - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` - [ ] `runtime/cds` still passes by default (i.e. with tiered compilation) ------------- Commit messages: - More fixes - Fix Changes: https://git.openjdk.org/leyden/pull/32/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=32&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8349457 Stats: 38 lines in 3 files changed: 29 ins; 4 del; 5 mod Patch: https://git.openjdk.org/leyden/pull/32.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/32/head:pull/32 PR: https://git.openjdk.org/leyden/pull/32 From adinn at openjdk.org Wed Feb 5 13:14:34 2025 From: adinn at openjdk.org (Andrew Dinn) Date: Wed, 5 Feb 2025 13:14:34 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation In-Reply-To: References: Message-ID: On Wed, 5 Feb 2025 12:14:56 GMT, Aleksey Shipilev wrote: > Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. > > There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. > > This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. > > Additional testing: > - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive > - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` > - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) src/hotspot/share/compiler/precompiler.cpp line 243: > 241: } > 242: > 243: if (TieredCompilation) { How does this work as far as consistency between training/assembly run and production run is concerned? Do we need to enforce the same setting across these runs or can we e.g. train and then (assuming we fork) assemble with -TieredCompilation but run in production with +TieredCompilation -- or vice versa? ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/32#discussion_r1942921125 From shade at openjdk.org Wed Feb 5 14:01:32 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 5 Feb 2025 14:01:32 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation In-Reply-To: References: Message-ID: On Wed, 5 Feb 2025 13:11:07 GMT, Andrew Dinn wrote: >> Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. >> >> There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. >> >> This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. >> >> Additional testing: >> - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive >> - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` >> - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) > > src/hotspot/share/compiler/precompiler.cpp line 243: > >> 241: } >> 242: >> 243: if (TieredCompilation) { > > How does this work as far as consistency between training/assembly run and production run is concerned? Do we need to enforce the same setting across these runs or can we e.g. train and then (assuming we fork) assemble with -TieredCompilation but run in production with +TieredCompilation -- or vice versa? I tested different combinations of `{+|-}TieredCompilation` with training and production runs, and it works well. I believe the normal mechanisms make it right. No C1 code? Nothing loaded. C1 code in archive, but C1 is disabled? We are not loading it then. In fact, there seem to be a slight performance edge in training with C2 only, and then running with C1+C2: no penalty on loading lots of C1 compiled code, and quicker transition from intepreter to "real" C1 in only a few places where it is needed! Compiler dynamics is weird. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/32#discussion_r1942995741 From asmehra at openjdk.org Wed Feb 5 15:19:50 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 5 Feb 2025 15:19:50 GMT Subject: RFR: Save/load i2c2i adapters [v14] In-Reply-To: References: Message-ID: > This is an attempt to save and load i2c2i adapters along with the adapter handler table. > There are mainly two parts to this change: > 1. Storing of adapter code in the SCCache or AOT code cache. > 2. Storing of adapter handler table in the AOT cache. > > Adapter handler table is a map from AdapterFingerPrint to AdapterHnadlerEntry. To store them in AOT cache, AdapterFingerPrint and AdapterHandlerEntry are updated to MetaspaceObj. Both these entities are discovered and added to the cache while processing the Method. When storing the adapter handler table, only the entries that have already been archived are considered. This allows pruning of AdapterHnadlerEntry that may be only reachable through a Method that is not eligible to be archived. > > An AdapterHandlerEntry has pointer to the adapter code. Because the AdapterHandlerEntry and the adapter code are stored in separate archives, this link between the AdapterHandlerEntry and the adapter code needs to be removed (see AdapterHandlerEntry::remove_unshareable_info()). > During the production run, as the methods in the AOT cache are adopted, the AdapterHandlerEntry is linked back to the adapter code (see AdapterHandlerEntry::restore_unshareable_info). > > All this code is guarded by -XX:[+-]ArchiveAdapters option which defaults to false, but is set to true in CDSConfig during the assembly phase. > > Other changes worth mentioning: > 1. Changes to the SCCache infrastructure to make it possible to store and load adapter code. (Thanks to @adinn) > 2. Updating AdapterFingerPrint hashing algorithm to avoid collisions. If there is any collision, then it will prevent finding the adapter code in the SCCache. (Again courtesy of @adinn) > > Thanks to @adinn for providing many of these changes. > > Performance: > -Xlog:init shows time taken for linking of Methods and making adapters. An example output is: > > ClassLoader: > clinit: 150us / 4612 events > link methods: 28980us / 176893 events > method adapters: 15378us / 697 events > > Save/load of adapters seem to have improved these stats. > > | Quarkus | -ArchiveAdapters | +ArchiveAdapters | > |---|---|---| > | link methods | 12214us / 58913 events | 2700us / 58913 events | > | method adapters | 7793us / 607 events | 4402us / 38 events | > > | Spring-petclinic | -ArchiveAdapters | +ArchiveAdapters | > |---|---|---| > | link methods | 28980us / 176893 events | 7485us / 176893 events | > | method adapters | 15378us / 697 events | 7050us / 13 events | > > Howeve... Ashutosh Mehra has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains 38 commits: - Merge branch 'premain' into premain-save-i2c2i-v3 - Fix compile failure in minimal build Signed-off-by: Ashutosh Mehra - Do not search archived adapter table during assembly phase Signed-off-by: Ashutosh Mehra - Merge branch 'premain' into premain-save-i2c2i-v3 - Mark entry point as RuntimeAddress for relocation Signed-off-by: Ashutosh Mehra - Fix whitespace errors Signed-off-by: Ashutosh Mehra - Fix compile failure in minimal build config Signed-off-by: Ashutosh Mehra - Search archived handler table before runtime table when searching a CodeBlob Signed-off-by: Ashutosh Mehra - Fix bug in looking up AdapterFingerPrint in archived table Signed-off-by: Ashutosh Mehra - Fix bool condition check Signed-off-by: Ashutosh Mehra - ... and 28 more: https://git.openjdk.org/leyden/compare/01aa0973...b9917914 ------------- Changes: https://git.openjdk.org/leyden/pull/25/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=25&range=13 Stats: 1362 lines in 26 files changed: 885 ins; 247 del; 230 mod Patch: https://git.openjdk.org/leyden/pull/25.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/25/head:pull/25 PR: https://git.openjdk.org/leyden/pull/25 From asmehra at openjdk.org Wed Feb 5 18:43:27 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 5 Feb 2025 18:43:27 GMT Subject: git: openjdk/leyden: premain: Save/load i2c2i adapters Message-ID: Changeset: 7a61e391 Branch: premain Author: Ashutosh Mehra Date: 2025-02-05 18:42:09 +0000 URL: https://git.openjdk.org/leyden/commit/7a61e39199d8c119f66f5088b067fc57a62d1e55 Save/load i2c2i adapters Co-authored-by: Andrew Dinn Reviewed-by: kvn, iklam ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp ! src/hotspot/cpu/arm/sharedRuntime_arm.cpp ! src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp ! src/hotspot/cpu/riscv/sharedRuntime_riscv.cpp ! src/hotspot/cpu/s390/sharedRuntime_s390.cpp ! src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp ! src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp ! src/hotspot/cpu/zero/sharedRuntime_zero.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConfig.hpp ! src/hotspot/share/cds/cds_globals.hpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/code/SCCache.cpp ! src/hotspot/share/code/SCCache.hpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/memory/allocation.hpp ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/method.hpp ! src/hotspot/share/oops/trainingData.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/init.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/sharedRuntime.hpp From asmehra at openjdk.org Wed Feb 5 18:45:44 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 5 Feb 2025 18:45:44 GMT Subject: Integrated: Save/load i2c2i adapters In-Reply-To: References: Message-ID: <98ejJgn7h14HHnbEgW1KkU_Gr6_MdkMtvnuADMydMd8=.ecd9dbd0-6c7c-4422-8f71-349b6cdceb5f@github.com> On Wed, 23 Oct 2024 15:33:59 GMT, Ashutosh Mehra wrote: > This is an attempt to save and load i2c2i adapters along with the adapter handler table. > There are mainly two parts to this change: > 1. Storing of adapter code in the SCCache or AOT code cache. > 2. Storing of adapter handler table in the AOT cache. > > Adapter handler table is a map from AdapterFingerPrint to AdapterHnadlerEntry. To store them in AOT cache, AdapterFingerPrint and AdapterHandlerEntry are updated to MetaspaceObj. Both these entities are discovered and added to the cache while processing the Method. When storing the adapter handler table, only the entries that have already been archived are considered. This allows pruning of AdapterHnadlerEntry that may be only reachable through a Method that is not eligible to be archived. > > An AdapterHandlerEntry has pointer to the adapter code. Because the AdapterHandlerEntry and the adapter code are stored in separate archives, this link between the AdapterHandlerEntry and the adapter code needs to be removed (see AdapterHandlerEntry::remove_unshareable_info()). > During the production run, as the methods in the AOT cache are adopted, the AdapterHandlerEntry is linked back to the adapter code (see AdapterHandlerEntry::restore_unshareable_info). > > All this code is guarded by -XX:[+-]ArchiveAdapters option which defaults to false, but is set to true in CDSConfig during the assembly phase. > > Other changes worth mentioning: > 1. Changes to the SCCache infrastructure to make it possible to store and load adapter code. (Thanks to @adinn) > 2. Updating AdapterFingerPrint hashing algorithm to avoid collisions. If there is any collision, then it will prevent finding the adapter code in the SCCache. (Again courtesy of @adinn) > > Thanks to @adinn for providing many of these changes. > > Performance: > -Xlog:init shows time taken for linking of Methods and making adapters. An example output is: > > ClassLoader: > clinit: 150us / 4612 events > link methods: 28980us / 176893 events > method adapters: 15378us / 697 events > > Save/load of adapters seem to have improved these stats. > > | Quarkus | -ArchiveAdapters | +ArchiveAdapters | > |---|---|---| > | link methods | 12214us / 58913 events | 2700us / 58913 events | > | method adapters | 7793us / 607 events | 4402us / 38 events | > > | Spring-petclinic | -ArchiveAdapters | +ArchiveAdapters | > |---|---|---| > | link methods | 28980us / 176893 events | 7485us / 176893 events | > | method adapters | 15378us / 697 events | 7050us / 13 events | > > Howeve... This pull request has now been integrated. Changeset: 7a61e391 Author: Ashutosh Mehra URL: https://git.openjdk.org/leyden/commit/7a61e39199d8c119f66f5088b067fc57a62d1e55 Stats: 1362 lines in 26 files changed: 885 ins; 247 del; 230 mod Save/load i2c2i adapters Co-authored-by: Andrew Dinn Reviewed-by: kvn, iklam ------------- PR: https://git.openjdk.org/leyden/pull/25 From asmehra at openjdk.org Wed Feb 5 19:50:42 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 5 Feb 2025 19:50:42 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation In-Reply-To: References: Message-ID: <-8zj_PNJPmmDtDppKT5ggkglVG8qqgeoqr9WBhfM1Fw=.01691e79-a125-41bf-b0a9-d36daba5bc55@github.com> On Wed, 5 Feb 2025 12:14:56 GMT, Aleksey Shipilev wrote: > Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. > > There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. > > This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. > > Additional testing: > - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive > - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` > - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) lgtm ------------- Marked as reviewed by asmehra (Committer). PR Review: https://git.openjdk.org/leyden/pull/32#pullrequestreview-2596818022 From kvn at openjdk.org Wed Feb 5 20:05:35 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Wed, 5 Feb 2025 20:05:35 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation In-Reply-To: References: Message-ID: On Wed, 5 Feb 2025 12:14:56 GMT, Aleksey Shipilev wrote: > Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. > > There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. > > This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. > > Additional testing: > - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive > - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` > - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) @veresov should look on this. ------------- PR Review: https://git.openjdk.org/leyden/pull/32#pullrequestreview-2596859679 From iveresov at openjdk.org Wed Feb 5 20:34:30 2025 From: iveresov at openjdk.org (Igor Veresov) Date: Wed, 5 Feb 2025 20:34:30 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation In-Reply-To: References: Message-ID: On Wed, 5 Feb 2025 12:14:56 GMT, Aleksey Shipilev wrote: > Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. > > There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. > > This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. > > Additional testing: > - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive > - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` > - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) Marked as reviewed by iveresov (Committer). ------------- PR Review: https://git.openjdk.org/leyden/pull/32#pullrequestreview-2596913491 From iveresov at openjdk.org Wed Feb 5 20:34:30 2025 From: iveresov at openjdk.org (Igor Veresov) Date: Wed, 5 Feb 2025 20:34:30 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation In-Reply-To: References: Message-ID: <7Izkm4WbnUywF9sFiEMOpq39EtYPaSemflhRQMkf7-s=.101a606e-ecb6-4288-8183-b591a973c12d@github.com> On Wed, 5 Feb 2025 20:02:49 GMT, Vladimir Kozlov wrote: > @veresov should look on this. @iwanowww wrote that particular part. I looks good to me though. ------------- PR Comment: https://git.openjdk.org/leyden/pull/32#issuecomment-2637962198 From iklam at openjdk.org Thu Feb 6 06:16:23 2025 From: iklam at openjdk.org (Ioi Lam) Date: Thu, 6 Feb 2025 06:16:23 GMT Subject: RFR: 8349181: [leyden] tools/sincechecker/modules/java.base/JavaBaseCheckSince.java fails In-Reply-To: References: Message-ID: <7ZaASiCmotE6-ftcBsrJ6T7xC_mtZRv_nKpd5B5MxUg=.ebeab29d-cd2d-4838-a715-cd245c5bcc53@github.com> On Sat, 1 Feb 2025 09:52:57 GMT, Aleksey Shipilev wrote: > Trivial testbug fix. > > Additional testing: > - [x] MacOS AArch64 server fastdebug, test now passes LGTM ------------- Marked as reviewed by iklam (Committer). PR Review: https://git.openjdk.org/leyden/pull/31#pullrequestreview-2597749355 From duke at openjdk.org Thu Feb 6 06:40:28 2025 From: duke at openjdk.org (duke) Date: Thu, 6 Feb 2025 06:40:28 GMT Subject: RFR: 8349181: [leyden] tools/sincechecker/modules/java.base/JavaBaseCheckSince.java fails In-Reply-To: References: Message-ID: <6ztozsLW7WthjKoqPOqi86_DaRdLIw9S8g-_AinCDRU=.d4244135-5261-4b9b-b071-5f0618f8e0ca@github.com> On Sat, 1 Feb 2025 09:52:57 GMT, Aleksey Shipilev wrote: > Trivial testbug fix. > > Additional testing: > - [x] MacOS AArch64 server fastdebug, test now passes @shipilev Your change (at version c7356f9992145aeccace8ebb4299b12c4a354d96) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/31#issuecomment-2638960654 From shade at openjdk.org Thu Feb 6 11:58:00 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Thu, 6 Feb 2025 11:58:00 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses Message-ID: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> WIP. I have yet to see if this has a good performance impact. Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. ------------- Commit messages: - Fix Changes: https://git.openjdk.org/leyden/pull/33/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=33&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8349539 Stats: 4 lines in 1 file changed: 2 ins; 0 del; 2 mod Patch: https://git.openjdk.org/leyden/pull/33.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/33/head:pull/33 PR: https://git.openjdk.org/leyden/pull/33 From shade at openjdk.org Thu Feb 6 16:29:25 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Thu, 6 Feb 2025 16:29:25 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses In-Reply-To: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: On Thu, 6 Feb 2025 11:52:25 GMT, Aleksey Shipilev wrote: > WIP. I have yet to see if this has a good performance impact. > > Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. Look at "user" time, this is what we save without recompiling the methods that get bailed from the archive. $ rm -f *.cds*; hyperfine -w 3 -r 10 "build/linux-x86_64-server-release/images/jdk/bin/java -XX:CacheDataStore=JavacBenchApp.cds -cp JavacBenchApp.jar JavacBenchApp 500"; # Before Time (mean ? ?): 1.556 s ? 0.013 s [User: 4.575 s, System: 0.501 s] Range (min ? max): 1.538 s ? 1.580 s 10 runs # After Time (mean ? ?): 1.551 s ? 0.016 s [User: 3.646 s, System: 0.458 s] Range (min ? max): 1.536 s ? 1.586 s 10 runs ------------- PR Comment: https://git.openjdk.org/leyden/pull/33#issuecomment-2640329448 From shade at openjdk.org Thu Feb 6 16:30:30 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Thu, 6 Feb 2025 16:30:30 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation In-Reply-To: References: Message-ID: On Wed, 5 Feb 2025 12:14:56 GMT, Aleksey Shipilev wrote: > Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. > > There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. > > This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. > > Additional testing: > - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive > - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` > - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) Fun perf results: $ build/linux-x86_64-server-release/images/jdk/bin/java -Xms64m -Xmx1g -XX:+UseParallelGC \ -XX:CacheDataStore=JavacBenchApp.cds -cp JavacBenchApp.jar JavacBenchApp 50 # --- Training with C1 and C2 (+Tiered) # Production with C1 and C2 (+Tiered) Time (mean ? ?): 434.0 ms ? 8.5 ms [User: 1506.7 ms, System: 218.4 ms] Range (min ? max): 423.4 ms ? 449.2 ms 10 runs # Production with C2 only (-Tiered) Time (mean ? ?): 561.2 ms ? 12.8 ms [User: 3578.0 ms, System: 263.2 ms] Range (min ? max): 542.3 ms ? 589.2 ms 10 runs # --- Training with C2 only (-Tiered) # Production with C1 and C2 (+Tiered) Time (mean ? ?): 408.0 ms ? 5.4 ms [User: 1183.2 ms, System: 165.2 ms] Range (min ? max): 401.3 ms ? 421.0 ms 10 runs # Production with C2 only (-Tiered) Time (mean ? ?): 482.0 ms ? 11.6 ms [User: 1959.1 ms, System: 182.5 ms] Range (min ? max): 467.2 ms ? 508.2 ms 10 runs ------------- PR Comment: https://git.openjdk.org/leyden/pull/32#issuecomment-2640333261 From iklam at openjdk.org Thu Feb 6 18:28:22 2025 From: iklam at openjdk.org (Ioi Lam) Date: Thu, 6 Feb 2025 18:28:22 GMT Subject: git: openjdk/leyden: premain: 8349181: [leyden] tools/sincechecker/modules/java.base/JavaBaseCheckSince.java fails Message-ID: <48d58f68-3afa-425a-8642-e56b12bc4268@openjdk.org> Changeset: c6802a84 Branch: premain Author: Aleksey Shipilev Committer: Ioi Lam Date: 2025-02-06 18:26:39 +0000 URL: https://git.openjdk.org/leyden/commit/c6802a8415325b0ab91bc15f3f4171058ce8fb7d 8349181: [leyden] tools/sincechecker/modules/java.base/JavaBaseCheckSince.java fails Reviewed-by: iklam ! src/java.base/share/classes/java/lang/System.java From shade at openjdk.org Thu Feb 6 18:29:22 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Thu, 6 Feb 2025 18:29:22 GMT Subject: Integrated: 8349181: [leyden] tools/sincechecker/modules/java.base/JavaBaseCheckSince.java fails In-Reply-To: References: Message-ID: On Sat, 1 Feb 2025 09:52:57 GMT, Aleksey Shipilev wrote: > Trivial testbug fix. > > Additional testing: > - [x] MacOS AArch64 server fastdebug, test now passes This pull request has now been integrated. Changeset: c6802a84 Author: Aleksey Shipilev Committer: Ioi Lam URL: https://git.openjdk.org/leyden/commit/c6802a8415325b0ab91bc15f3f4171058ce8fb7d Stats: 3 lines in 1 file changed: 1 ins; 0 del; 2 mod 8349181: [leyden] tools/sincechecker/modules/java.base/JavaBaseCheckSince.java fails Reviewed-by: iklam ------------- PR: https://git.openjdk.org/leyden/pull/31 From shade at openjdk.org Thu Feb 6 20:37:38 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Thu, 6 Feb 2025 20:37:38 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation In-Reply-To: References: Message-ID: On Wed, 5 Feb 2025 12:14:56 GMT, Aleksey Shipilev wrote: > Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. > > There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. > > This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. > > Additional testing: > - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive > - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` > - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) Taking the rest of the week off, so feel free to integrate without me. ------------- PR Comment: https://git.openjdk.org/leyden/pull/32#issuecomment-2640939991 From vlivanov at openjdk.org Thu Feb 6 21:48:36 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Thu, 6 Feb 2025 21:48:36 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation In-Reply-To: References: Message-ID: <69HkbPvMlOXDNmcs5DB3XFeiYMymo5J4OmzhawpMGHo=.9105ca7b-d3c1-474f-a5db-604a224c58b3@github.com> On Wed, 5 Feb 2025 13:59:03 GMT, Aleksey Shipilev wrote: >> src/hotspot/share/compiler/precompiler.cpp line 243: >> >>> 241: } >>> 242: >>> 243: if (TieredCompilation) { >> >> How does this work as far as consistency between training/assembly run and production run is concerned? Do we need to enforce the same setting across these runs or can we e.g. train and then (assuming we fork) assemble with -TieredCompilation but run in production with +TieredCompilation -- or vice versa? > > I tested different combinations of `{+|-}TieredCompilation` with training and production runs, and it works well. I believe the normal mechanisms make it right. I.e. there is no guarantee that lower-tiers code would always be present with `+TieredCompilation`. So, no C1 code? Fine, nothing loaded. > > The loaders are also aware of the compilers that are present. So, tier{2,3} code in archive, but C1 is disabled? We are not loading it then. > > From performance angle, there seem to be a slight performance edge in training with C2 only, and then running with C1+C2: no penalty on loading lots of C1 compiled code, and quicker transition from intepreter to "real" C1 in only a few places where it is needed! Compiler dynamics is weird. This PR gains us access to these kind of studies :) As I mentioned during the meeting, it looks weird to me to see `if (TieredCompilation)` checks in Precompiler code which is executed only during assembly phase. As a data point, regular CDS archive is used to be generated in interpreter-only mode (to make the process reproducible). Instead of supporting arbitrary JVM configurations during assembly phase, I'd prefer to see offending JVM parameters being overridden/dropped. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/32#discussion_r1945512817 From vlivanov at openjdk.org Thu Feb 6 22:03:47 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Thu, 6 Feb 2025 22:03:47 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses In-Reply-To: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: On Thu, 6 Feb 2025 11:52:25 GMT, Aleksey Shipilev wrote: > Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. I agree that the restriction for hidden classes can be lifted. But there are non-default modes where it still matters (`UseMetadataPointers == true`). I suggest to keep `klass->is_hidden()` check, but move it down to guard symbolic resolution case. ------------- PR Review: https://git.openjdk.org/leyden/pull/33#pullrequestreview-2600098939 From duke at openjdk.org Fri Feb 7 16:35:37 2025 From: duke at openjdk.org (duke) Date: Fri, 7 Feb 2025 16:35:37 GMT Subject: git: openjdk/leyden: premain: 218 new changesets Message-ID: <787f075b-72b3-46d0-852e-7a5c3a7211d0@openjdk.org> Changeset: be1cdd94 Branch: premain Author: Ioi Lam Date: 2025-01-15 04:32:47 +0000 URL: https://git.openjdk.org/leyden/commit/be1cdd9450763c5c409bd6e28ec3604cdd90b653 8344140: Refactor the discovery of AOT cache artifacts Reviewed-by: ccheung, asmehra + src/hotspot/share/cds/aotArtifactFinder.cpp + src/hotspot/share/cds/aotArtifactFinder.hpp ! src/hotspot/share/cds/aotClassInitializer.cpp ! src/hotspot/share/cds/aotClassLinker.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/archiveHeapWriter.hpp ! src/hotspot/share/cds/cdsEnumKlass.cpp ! src/hotspot/share/cds/cdsHeapVerifier.cpp ! src/hotspot/share/cds/dumpTimeClassInfo.hpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/metaspaceShared.hpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/modules.cpp ! src/hotspot/share/classfile/modules.hpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/stringTable.hpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/systemDictionaryShared.hpp ! src/hotspot/share/oops/constantPool.cpp ! src/hotspot/share/oops/constantPool.hpp ! src/hotspot/share/oops/cpCache.cpp ! src/hotspot/share/oops/cpCache.hpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp Changeset: e04f413a Branch: premain Author: iklam Date: 2025-02-06 19:17:50 +0000 URL: https://git.openjdk.org/leyden/commit/e04f413a2b1dbabb2b42ca8b9ff4ba802954cb76 Merge branch 'master' into premain + src/hotspot/share/cds/aotArtifactFinder.cpp ! src/hotspot/share/cds/aotClassInitializer.cpp ! src/hotspot/share/cds/aotClassLinker.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/archiveHeapWriter.hpp ! src/hotspot/share/cds/cdsHeapVerifier.cpp ! src/hotspot/share/cds/dumpTimeClassInfo.hpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/metaspaceShared.hpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/modules.cpp ! src/hotspot/share/classfile/modules.hpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/systemDictionaryShared.hpp ! src/hotspot/share/oops/constantPool.cpp ! src/hotspot/share/oops/cpCache.cpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/cds/aotArtifactFinder.cpp ! src/hotspot/share/cds/aotClassInitializer.cpp ! src/hotspot/share/cds/aotClassLinker.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/archiveHeapWriter.hpp ! src/hotspot/share/cds/cdsHeapVerifier.cpp ! src/hotspot/share/cds/dumpTimeClassInfo.hpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/metaspaceShared.hpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/modules.cpp ! src/hotspot/share/classfile/modules.hpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/systemDictionaryShared.hpp ! src/hotspot/share/oops/constantPool.cpp ! src/hotspot/share/oops/cpCache.cpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp Changeset: 5d614345 Branch: premain Author: iklam Date: 2025-02-06 19:24:30 +0000 URL: https://git.openjdk.org/leyden/commit/5d61434566ea53b869c841477cc083ed2f8c271f Merge branch 'premain' of https://github.com/openjdk/leyden into premain Changeset: 1c15d994 Branch: premain Author: iklam Date: 2025-02-06 20:33:31 +0000 URL: https://git.openjdk.org/leyden/commit/1c15d994d3c9d85f701e023016035a5a158d47a5 More fixes with merge of JEP 483 from the mainline ! src/hotspot/share/cds/aotConstantPoolResolver.cpp Changeset: 28e01e65 Branch: premain Author: Chen Liang Date: 2025-01-15 05:24:43 +0000 URL: https://git.openjdk.org/leyden/commit/28e01e6559a79720d03355444a4e1c1fbf0b0373 8347762: ClassFile attribute specification refers to non-SE modules Reviewed-by: darcy, dholmes ! src/java.base/share/classes/java/lang/classfile/attribute/CharacterRangeTableAttribute.java ! src/java.base/share/classes/java/lang/classfile/attribute/CompilationIDAttribute.java ! src/java.base/share/classes/java/lang/classfile/attribute/DeprecatedAttribute.java ! src/java.base/share/classes/java/lang/classfile/attribute/ModuleHashesAttribute.java ! src/java.base/share/classes/java/lang/classfile/attribute/ModuleResolutionAttribute.java ! src/java.base/share/classes/java/lang/classfile/attribute/ModuleTargetAttribute.java ! src/java.base/share/classes/java/lang/classfile/attribute/SourceIDAttribute.java Changeset: a3be97e2 Branch: premain Author: Henry Jen Date: 2025-01-15 05:40:04 +0000 URL: https://git.openjdk.org/leyden/commit/a3be97e2d61c10f4bf64e9bdb05f562036589765 8347761: Test tools/jimage/JImageExtractTest.java fails after JDK-8303884 Reviewed-by: dholmes ! src/jdk.jlink/share/classes/jdk/tools/jimage/resources/jimage.properties Changeset: afc4529d Branch: premain Author: Swati Sharma Committer: David Holmes Date: 2025-01-15 06:52:24 +0000 URL: https://git.openjdk.org/leyden/commit/afc4529d969dca4c9f44045468d174a7c3f211b2 8346834: Tests failing with -XX:+UseNUMA due to "NUMA support disabled" warning Reviewed-by: dholmes, sjohanss ! src/hotspot/os/linux/os_linux.cpp ! src/hotspot/os/linux/os_linux.hpp ! test/jdk/ProblemList.txt Changeset: 4f3dc9d1 Branch: premain Author: Fei Yang Date: 2025-01-15 08:04:04 +0000 URL: https://git.openjdk.org/leyden/commit/4f3dc9d13a609ef50205f77e9cdf9c57fd30bcca 8347352: RISC-V: Cleanup bitwise AND assembler routines Reviewed-by: rehn, fjiang, mli ! src/hotspot/cpu/riscv/assembler_riscv.hpp ! src/hotspot/cpu/riscv/c1_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.hpp ! src/hotspot/cpu/riscv/sharedRuntime_riscv.cpp Changeset: 91197b38 Branch: premain Author: Joakim Nordstr?m Committer: Jie Fu Date: 2025-01-15 08:56:38 +0000 URL: https://git.openjdk.org/leyden/commit/91197b384f1779fc18dec3c54a3cec620d237f8e 8347531: The signal tests are failing after JDK-8345782 due to an unrelated warning Reviewed-by: kevinw, dholmes ! test/hotspot/jtreg/runtime/signal/SigTestDriver.java Changeset: af3f5d85 Branch: premain Author: Alan Bateman Date: 2025-01-15 10:54:03 +0000 URL: https://git.openjdk.org/leyden/commit/af3f5d852e5dd0191548bdc477546b5b343d1276 8347039: ThreadPerTaskExecutor terminates if cancelled tasks still running Reviewed-by: vklang ! src/java.base/share/classes/java/util/concurrent/ThreadPerTaskExecutor.java ! test/jdk/java/util/concurrent/ThreadPerTaskExecutor/ThreadPerTaskExecutorTest.java Changeset: c36200b0 Branch: premain Author: Coleen Phillimore Date: 2025-01-15 12:16:58 +0000 URL: https://git.openjdk.org/leyden/commit/c36200b09801d8a96a3d3239c15fef91010c3bbf 8347721: Replace SIZE_FORMAT in compiler directories Reviewed-by: kvn, dlong ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeHeapState.cpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/vtableStubs.cpp ! src/hotspot/share/opto/parse1.cpp Changeset: d4e5ec27 Branch: premain Author: Per Minborg Date: 2025-01-15 12:19:27 +0000 URL: https://git.openjdk.org/leyden/commit/d4e5ec274673c1ee883e8d5c3785f0b03e39445c 8346610: Make all imports consistent in the FFM API Reviewed-by: mcimadamore ! src/java.base/share/classes/java/lang/foreign/FunctionDescriptor.java ! src/java.base/share/classes/java/lang/foreign/Linker.java ! src/java.base/share/classes/java/lang/foreign/MemoryLayout.java ! src/java.base/share/classes/java/lang/foreign/MemorySegment.java ! src/java.base/share/classes/java/lang/foreign/SegmentAllocator.java ! src/java.base/share/classes/java/lang/foreign/ValueLayout.java ! src/java.base/share/classes/jdk/internal/foreign/AbstractMemorySegmentImpl.java ! src/java.base/share/classes/jdk/internal/foreign/ArenaImpl.java ! src/java.base/share/classes/jdk/internal/foreign/CABI.java ! src/java.base/share/classes/jdk/internal/foreign/ConfinedSession.java ! src/java.base/share/classes/jdk/internal/foreign/GlobalSession.java ! src/java.base/share/classes/jdk/internal/foreign/HeapMemorySegmentImpl.java ! src/java.base/share/classes/jdk/internal/foreign/LayoutPath.java ! src/java.base/share/classes/jdk/internal/foreign/MappedMemorySegmentImpl.java ! src/java.base/share/classes/jdk/internal/foreign/MemorySessionImpl.java ! src/java.base/share/classes/jdk/internal/foreign/NativeMemorySegmentImpl.java ! src/java.base/share/classes/jdk/internal/foreign/SharedSession.java ! src/java.base/share/classes/jdk/internal/foreign/SystemLookup.java ! src/java.base/share/classes/jdk/internal/foreign/Utils.java ! src/java.base/share/classes/jdk/internal/foreign/abi/AbstractLinker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/Binding.java ! src/java.base/share/classes/jdk/internal/foreign/abi/BindingSpecializer.java ! src/java.base/share/classes/jdk/internal/foreign/abi/CallingSequence.java ! src/java.base/share/classes/jdk/internal/foreign/abi/CallingSequenceBuilder.java ! src/java.base/share/classes/jdk/internal/foreign/abi/DowncallLinker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/SharedUtils.java ! src/java.base/share/classes/jdk/internal/foreign/abi/UpcallLinker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/UpcallStubs.java ! src/java.base/share/classes/jdk/internal/foreign/abi/aarch64/CallArranger.java ! src/java.base/share/classes/jdk/internal/foreign/abi/aarch64/TypeClass.java ! src/java.base/share/classes/jdk/internal/foreign/abi/aarch64/linux/LinuxAArch64CallArranger.java ! src/java.base/share/classes/jdk/internal/foreign/abi/aarch64/linux/LinuxAArch64Linker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/aarch64/macos/MacOsAArch64CallArranger.java ! src/java.base/share/classes/jdk/internal/foreign/abi/aarch64/macos/MacOsAArch64Linker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/aarch64/windows/WindowsAArch64CallArranger.java ! src/java.base/share/classes/jdk/internal/foreign/abi/aarch64/windows/WindowsAArch64Linker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/fallback/FFIType.java ! src/java.base/share/classes/jdk/internal/foreign/abi/fallback/FallbackLinker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/ppc64/CallArranger.java ! src/java.base/share/classes/jdk/internal/foreign/abi/ppc64/TypeClass.java ! src/java.base/share/classes/jdk/internal/foreign/abi/ppc64/linux/LinuxPPC64Linker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/ppc64/linux/LinuxPPC64leLinker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/riscv64/linux/LinuxRISCV64CallArranger.java ! src/java.base/share/classes/jdk/internal/foreign/abi/riscv64/linux/LinuxRISCV64Linker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/s390/linux/LinuxS390CallArranger.java ! src/java.base/share/classes/jdk/internal/foreign/abi/s390/linux/LinuxS390Linker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/s390/linux/TypeClass.java ! src/java.base/share/classes/jdk/internal/foreign/abi/x64/sysv/CallArranger.java ! src/java.base/share/classes/jdk/internal/foreign/abi/x64/sysv/SysVx64Linker.java ! src/java.base/share/classes/jdk/internal/foreign/abi/x64/sysv/TypeClass.java ! src/java.base/share/classes/jdk/internal/foreign/abi/x64/windows/CallArranger.java ! src/java.base/share/classes/jdk/internal/foreign/abi/x64/windows/Windowsx64Linker.java Changeset: b0e2be6f Branch: premain Author: Coleen Phillimore Date: 2025-01-15 12:25:59 +0000 URL: https://git.openjdk.org/leyden/commit/b0e2be6f6b668ec4e3cfa525c660193dfbff77bf 8347729: Replace SIZE_FORMAT in parallel and serial gc Reviewed-by: dholmes, tschatzl ! src/hotspot/share/gc/epsilon/epsilonArguments.cpp ! src/hotspot/share/gc/epsilon/epsilonHeap.cpp ! src/hotspot/share/gc/epsilon/epsilonInitLogger.cpp ! src/hotspot/share/gc/parallel/mutableNUMASpace.cpp ! src/hotspot/share/gc/parallel/mutableSpace.cpp ! src/hotspot/share/gc/parallel/parallelInitLogger.cpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp ! src/hotspot/share/gc/parallel/psAdaptiveSizePolicy.cpp ! src/hotspot/share/gc/parallel/psClosure.inline.hpp ! src/hotspot/share/gc/parallel/psOldGen.cpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/parallel/psYoungGen.cpp ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/serialFullGC.cpp ! src/hotspot/share/gc/serial/serialHeap.cpp ! src/hotspot/share/gc/serial/tenuredGeneration.cpp Changeset: 7df21a8f Branch: premain Author: Daniel Fuchs Date: 2025-01-15 12:40:38 +0000 URL: https://git.openjdk.org/leyden/commit/7df21a8f09ab606f38a44d84d841d4bba9f09adf 8347597: HttpClient: improve exception reporting when closing connection Reviewed-by: jpai ! src/java.net.http/share/classes/jdk/internal/net/http/AsyncSSLConnection.java ! src/java.net.http/share/classes/jdk/internal/net/http/AsyncSSLTunnelConnection.java ! src/java.net.http/share/classes/jdk/internal/net/http/Exchange.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http1AsyncReceiver.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http1Exchange.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http1Response.java ! src/java.net.http/share/classes/jdk/internal/net/http/Http2Connection.java ! src/java.net.http/share/classes/jdk/internal/net/http/PlainHttpConnection.java ! src/java.net.http/share/classes/jdk/internal/net/http/Stream.java ! src/java.net.http/share/classes/jdk/internal/net/http/common/SSLTube.java ! src/java.net.http/share/classes/jdk/internal/net/http/common/Utils.java ! test/jdk/java/net/httpclient/AbstractThrowingPublishers.java ! test/jdk/java/net/httpclient/FlowAdapterPublisherTest.java ! test/jdk/java/net/httpclient/RedirectMethodChange.java ! test/jdk/java/net/httpclient/ShortRequestBody.java ! test/jdk/java/net/httpclient/http2/ExpectContinueResetTest.java Changeset: 8193ba3d Branch: premain Author: Hannes Greule Committer: Julian Waters Date: 2025-01-15 14:09:14 +0000 URL: https://git.openjdk.org/leyden/commit/8193ba3de200cb77f778f58c59b8bb2175b53273 8347562: javac crash due to type vars in permits clause Reviewed-by: vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! test/langtools/tools/javac/sealed/SealedCompilationTests.java Changeset: 254e840d Branch: premain Author: Sonia Zaldana Calles Date: 2025-01-15 14:09:27 +0000 URL: https://git.openjdk.org/leyden/commit/254e840d9a80cfdcb48984a166b326a9c7a0e4b8 8340416: Remove ArchiveBuilder::estimate_archive_size() Reviewed-by: iklam, ccheung ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveBuilder.hpp ! src/hotspot/share/cds/dynamicArchive.cpp Changeset: 63cedaf4 Branch: premain Author: Severin Gehwolf Date: 2025-01-15 14:44:35 +0000 URL: https://git.openjdk.org/leyden/commit/63cedaf40e179267d75445a4c71ec15f29979cd3 8347334: JimageDiffGenerator code clean-ups Reviewed-by: henryjen, mbaesken ! src/jdk.jlink/share/classes/jdk/tools/jlink/internal/runtimelink/JimageDiffGenerator.java + test/jdk/tools/jlink/runtimeImage/JimageDiffGeneratorTest.java Changeset: a0f7982e Branch: premain Author: Mikhail Yankelevich Committer: Weijun Wang Date: 2025-01-15 15:24:31 +0000 URL: https://git.openjdk.org/leyden/commit/a0f7982e44deec2cd59379c62b215c3f526fc2c4 8345134: Test sun/security/tools/jarsigner/ConciseJarsigner.java failed: unable to find valid certification path to requested target Reviewed-by: weijun ! test/jdk/sun/security/tools/jarsigner/ConciseJarsigner.java Changeset: 4257215a Branch: premain Author: Markus Gr?nlund Date: 2025-01-15 16:17:26 +0000 URL: https://git.openjdk.org/leyden/commit/4257215a9fa02f74ccd4fc62893d4b1a232a8754 8345493: JFR: JVM.flush hangs intermittently Reviewed-by: egahlin ! src/jdk.jfr/share/classes/jdk/jfr/internal/PlatformRecorder.java ! src/jdk.jfr/share/classes/jdk/jfr/internal/periodic/FlushTask.java Changeset: a6be9076 Branch: premain Author: Aleksey Shipilev Date: 2025-01-15 16:40:12 +0000 URL: https://git.openjdk.org/leyden/commit/a6be9076351b591cbc0860b1ba8f3c56319f4ffe 8347424: Fix and rewrite sun/security/x509/DNSName/LeadingPeriod.java test Reviewed-by: mullan, bperez ! test/jdk/sun/security/x509/DNSName/LeadingPeriod.java Changeset: 983e24fd Branch: premain Author: Coleen Phillimore Date: 2025-01-15 17:11:29 +0000 URL: https://git.openjdk.org/leyden/commit/983e24fd262b5aa793a249cad39270956e1f8fc4 8347727: Replace SIZE_FORMAT in shared gc Reviewed-by: kbarrett, dholmes, tschatzl ! src/hotspot/share/gc/shared/adaptiveSizePolicy.cpp ! src/hotspot/share/gc/shared/ageTable.cpp ! src/hotspot/share/gc/shared/collectedHeap.cpp ! src/hotspot/share/gc/shared/fullGCForwarding.cpp ! src/hotspot/share/gc/shared/gcArguments.cpp ! src/hotspot/share/gc/shared/gcInitLogger.cpp ! src/hotspot/share/gc/shared/gcTraceTime.cpp ! src/hotspot/share/gc/shared/gcVMOperations.cpp ! src/hotspot/share/gc/shared/genArguments.cpp ! src/hotspot/share/gc/shared/jvmFlagConstraintsGC.cpp ! src/hotspot/share/gc/shared/memAllocator.cpp ! src/hotspot/share/gc/shared/oopStorage.cpp ! src/hotspot/share/gc/shared/plab.cpp ! src/hotspot/share/gc/shared/preservedMarks.cpp ! src/hotspot/share/gc/shared/pretouchTask.cpp ! src/hotspot/share/gc/shared/referenceProcessor.cpp ! src/hotspot/share/gc/shared/satbMarkQueue.cpp ! src/hotspot/share/gc/shared/taskqueue.cpp ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.cpp ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.inline.hpp ! src/hotspot/share/gc/shared/workerDataArray.cpp Changeset: cfe70ebc Branch: premain Author: Naoto Sato Date: 2025-01-15 17:15:05 +0000 URL: https://git.openjdk.org/leyden/commit/cfe70ebcb3a9fadceac5eccdc1f3353d0d74c235 8342550: Log warning for using JDK1.1 compatible time zone IDs for future removal Reviewed-by: jlu, joehw, iris ! src/java.base/share/classes/java/util/TimeZone.java ! src/java.base/share/classes/sun/util/cldr/CLDRTimeZoneNameProviderImpl.java + test/jdk/java/util/TimeZone/ThreeLetterZoneID.java Changeset: 764d70b7 Branch: premain Author: William Kemper Date: 2025-01-15 17:49:38 +0000 URL: https://git.openjdk.org/leyden/commit/764d70b7df18e288582e616c62b0d7078f1ff3aa 8344049: Shenandoah: Eliminate init-update-refs safepoint 8344050: Shenandoah: Retire GC LABs concurrently 8344055: Shenandoah: Make all threads use local gc state Reviewed-by: ysr, kdnilsen ! src/hotspot/share/gc/shenandoah/shenandoahBarrierSet.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahBarrierSetClone.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahConcurrentGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahFreeSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.hpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahHeapRegionCounters.cpp ! src/hotspot/share/gc/shenandoah/shenandoahThreadLocalData.hpp ! src/hotspot/share/gc/shenandoah/shenandoahVMOperations.cpp ! src/hotspot/share/gc/shenandoah/shenandoahVerifier.cpp Changeset: bdf6e63e Branch: premain Author: Coleen Phillimore Date: 2025-01-15 22:44:33 +0000 URL: https://git.openjdk.org/leyden/commit/bdf6e63eb1439ff0f8777cb7f7d152d3666f18f0 8347431: Update ObjectMonitor comments Reviewed-by: dholmes, pchilanomate ! src/hotspot/share/runtime/objectMonitor.hpp Changeset: 9c430c92 Branch: premain Author: Alexander Zuev Date: 2025-01-16 01:10:46 +0000 URL: https://git.openjdk.org/leyden/commit/9c430c92257739730155df05f340fe144fd24098 8336920: ArithmeticException in javax.sound.sampled.AudioInputStream Reviewed-by: azvegint, prr ! src/java.desktop/share/classes/com/sun/media/sound/SoftLinearResampler2.java Changeset: d23ad013 Branch: premain Author: Aleksey Shipilev Date: 2025-01-16 10:13:48 +0000 URL: https://git.openjdk.org/leyden/commit/d23ad01319ba298cc0ddcc2424abac8071840338 8337978: Verify OopHandles oops on access Reviewed-by: dholmes, coleenp ! src/hotspot/share/oops/oopHandle.inline.hpp Changeset: 24de9dee Branch: premain Author: Andrey Turbanov Date: 2025-01-16 11:38:28 +0000 URL: https://git.openjdk.org/leyden/commit/24de9dee80738fe6ab1fc726b071546c85bbf79a 8347370: Unnecessary Hashtable usage in javax.swing.text.html.HTML Reviewed-by: aivanov, azvegint ! src/java.desktop/share/classes/javax/swing/text/html/HTML.java Changeset: 4ad5d551 Branch: premain Author: Theo Weidmann Date: 2025-01-16 12:16:14 +0000 URL: https://git.openjdk.org/leyden/commit/4ad5d5514e8fccc17f7be900e008e83f09e34e97 8325030: PhaseMacroExpand::value_from_mem_phi assert with "unknown node on this path" Reviewed-by: chagedorn, kvn ! src/hotspot/share/opto/macro.cpp + test/hotspot/jtreg/compiler/macronodes/TestTopInMacroElimination.java Changeset: f64f22b3 Branch: premain Author: Theo Weidmann Committer: Christian Hagedorn Date: 2025-01-16 12:17:21 +0000 URL: https://git.openjdk.org/leyden/commit/f64f22b360f68df68ebb875bd0ef08ba61702952 8346107: Generators: testing utility for random value generation Co-authored-by: Emanuel Peter Reviewed-by: epeter, chagedorn + test/hotspot/jtreg/compiler/lib/generators/AnyBitsDoubleGenerator.java + test/hotspot/jtreg/compiler/lib/generators/AnyBitsFloatGenerator.java + test/hotspot/jtreg/compiler/lib/generators/BoundGenerator.java + test/hotspot/jtreg/compiler/lib/generators/EmptyGeneratorException.java + test/hotspot/jtreg/compiler/lib/generators/Generator.java + test/hotspot/jtreg/compiler/lib/generators/Generators.java + test/hotspot/jtreg/compiler/lib/generators/MixedGenerator.java + test/hotspot/jtreg/compiler/lib/generators/RandomElementGenerator.java + test/hotspot/jtreg/compiler/lib/generators/RandomnessSource.java + test/hotspot/jtreg/compiler/lib/generators/RandomnessSourceAdapter.java + test/hotspot/jtreg/compiler/lib/generators/RestrictableGenerator.java + test/hotspot/jtreg/compiler/lib/generators/RestrictableMixedGenerator.java + test/hotspot/jtreg/compiler/lib/generators/RestrictableRandomElementGenerator.java + test/hotspot/jtreg/compiler/lib/generators/RestrictableSingleValueGenerator.java + test/hotspot/jtreg/compiler/lib/generators/SingleValueGenerator.java + test/hotspot/jtreg/compiler/lib/generators/UniformDoubleGenerator.java + test/hotspot/jtreg/compiler/lib/generators/UniformFloatGenerator.java + test/hotspot/jtreg/compiler/lib/generators/UniformIntGenerator.java + test/hotspot/jtreg/compiler/lib/generators/UniformIntersectionRestrictableGenerator.java + test/hotspot/jtreg/compiler/lib/generators/UniformLongGenerator.java + test/hotspot/jtreg/testlibrary_tests/generators/tests/ExampleTest.java + test/hotspot/jtreg/testlibrary_tests/generators/tests/MockRandomnessSource.java + test/hotspot/jtreg/testlibrary_tests/generators/tests/TestGenerators.java Changeset: cbe2f965 Branch: premain Author: Coleen Phillimore Date: 2025-01-16 12:46:32 +0000 URL: https://git.openjdk.org/leyden/commit/cbe2f9654eb7330c2e8cbe74e8abc2db63ec867b 8347732: Replace SIZE_FORMAT in shenandoah Reviewed-by: wkemper, ysr ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahAdaptiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahCompactHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahGenerationalHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahGlobalHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahOldHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahPassiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahStaticHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahYoungHeuristics.cpp ! src/hotspot/share/gc/shenandoah/shenandoahAgeCensus.cpp ! src/hotspot/share/gc/shenandoah/shenandoahArguments.cpp ! src/hotspot/share/gc/shenandoah/shenandoahCardStats.cpp ! src/hotspot/share/gc/shenandoah/shenandoahCollectionSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahCollectorPolicy.cpp ! src/hotspot/share/gc/shenandoah/shenandoahConcurrentGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahController.cpp ! src/hotspot/share/gc/shenandoah/shenandoahEvacTracker.cpp ! src/hotspot/share/gc/shenandoah/shenandoahFreeSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahFullGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGeneration.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationSizer.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationalEvacuationTask.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationalFullGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationalHeap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahHeapRegionClosures.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeapRegionCounters.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeapRegionSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahInitLogger.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMark.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahMarkBitMap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMarkingContext.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMarkingContext.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahMemoryPool.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMetrics.cpp ! src/hotspot/share/gc/shenandoah/shenandoahNumberSeq.cpp ! src/hotspot/share/gc/shenandoah/shenandoahOldGeneration.cpp ! src/hotspot/share/gc/shenandoah/shenandoahPacer.cpp ! src/hotspot/share/gc/shenandoah/shenandoahReferenceProcessor.cpp ! src/hotspot/share/gc/shenandoah/shenandoahScanRemembered.cpp ! src/hotspot/share/gc/shenandoah/shenandoahScanRemembered.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahVerifier.cpp Changeset: 8bfa5405 Branch: premain Author: Coleen Phillimore Date: 2025-01-16 12:48:51 +0000 URL: https://git.openjdk.org/leyden/commit/8bfa54055013ca92696982c86ed3869627718219 8347731: Replace SIZE_FORMAT in zgc Reviewed-by: stefank, tschatzl, jsikstro ! src/hotspot/share/gc/z/zAddress.cpp ! src/hotspot/share/gc/z/zArguments.cpp ! src/hotspot/share/gc/z/zCollectedHeap.cpp ! src/hotspot/share/gc/z/zDirector.cpp ! src/hotspot/share/gc/z/zGeneration.cpp ! src/hotspot/share/gc/z/zHeap.cpp ! src/hotspot/share/gc/z/zIndexDistributor.inline.hpp ! src/hotspot/share/gc/z/zLiveMap.cpp ! src/hotspot/share/gc/z/zMark.cpp ! src/hotspot/share/gc/z/zMarkStack.cpp ! src/hotspot/share/gc/z/zMarkStackAllocator.cpp ! src/hotspot/share/gc/z/zNMethodTable.cpp ! src/hotspot/share/gc/z/zPageAllocator.cpp ! src/hotspot/share/gc/z/zRelocationSetSelector.cpp ! src/hotspot/share/gc/z/zRememberedSet.cpp ! src/hotspot/share/gc/z/zStat.cpp ! src/hotspot/share/gc/z/zUncommitter.cpp ! src/hotspot/share/gc/z/zUnmapper.cpp ! src/hotspot/share/gc/z/zVirtualMemory.cpp Changeset: 3b6e5767 Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-16 14:25:52 +0000 URL: https://git.openjdk.org/leyden/commit/3b6e57670cfc8b45b0be228198ebe6033bed3064 8347825: Make IDEA ide support use proper build system mechanisms Reviewed-by: mcimadamore, erikj ! bin/idea.sh ! make/Main.gmk + make/ide/idea/jdk/IdeaGenConfig.gmk - make/ide/idea/jdk/idea.gmk ! test/make/TestIdea.gmk Changeset: bfa0cb79 Branch: premain Author: Coleen Phillimore Date: 2025-01-16 14:30:53 +0000 URL: https://git.openjdk.org/leyden/commit/bfa0cb79169ab00b0b600895d7a0f4038e8b8880 8347730: Replace SIZE_FORMAT in g1 Reviewed-by: kbarrett, tschatzl ! src/hotspot/share/gc/g1/g1AllocRegion.cpp ! src/hotspot/share/gc/g1/g1Allocator.cpp ! src/hotspot/share/gc/g1/g1BiasedArray.cpp ! src/hotspot/share/gc/g1/g1BiasedArray.hpp ! src/hotspot/share/gc/g1/g1BlockOffsetTable.cpp ! src/hotspot/share/gc/g1/g1BlockOffsetTable.hpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp ! src/hotspot/share/gc/g1/g1CollectionSet.cpp ! src/hotspot/share/gc/g1/g1CollectionSetChooser.cpp ! src/hotspot/share/gc/g1/g1CommittedRegionMap.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.inline.hpp ! src/hotspot/share/gc/g1/g1ConcurrentMarkObjArrayProcessor.cpp ! src/hotspot/share/gc/g1/g1DirtyCardQueue.cpp ! src/hotspot/share/gc/g1/g1FromCardCache.cpp ! src/hotspot/share/gc/g1/g1FullGCPrepareTask.inline.hpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp ! src/hotspot/share/gc/g1/g1HeapRegion.cpp ! src/hotspot/share/gc/g1/g1HeapRegionRemSet.cpp ! src/hotspot/share/gc/g1/g1HeapSizingPolicy.cpp ! src/hotspot/share/gc/g1/g1HeapTransition.cpp ! src/hotspot/share/gc/g1/g1IHOPControl.cpp ! src/hotspot/share/gc/g1/g1InitLogger.cpp ! src/hotspot/share/gc/g1/g1MonitoringSupport.cpp ! src/hotspot/share/gc/g1/g1NUMA.cpp ! src/hotspot/share/gc/g1/g1NUMAStats.cpp ! src/hotspot/share/gc/g1/g1PageBasedVirtualSpace.cpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.inline.hpp ! src/hotspot/share/gc/g1/g1Policy.cpp ! src/hotspot/share/gc/g1/g1RegionToSpaceMapper.cpp ! src/hotspot/share/gc/g1/g1RemSet.cpp ! src/hotspot/share/gc/g1/g1RemSetSummary.cpp ! src/hotspot/share/gc/g1/g1UncommitRegionTask.cpp ! src/hotspot/share/gc/g1/g1YoungGCPostEvacuateTasks.cpp ! src/hotspot/share/gc/g1/g1YoungGenSizer.cpp ! src/hotspot/share/gc/g1/jvmFlagConstraintsG1.cpp Changeset: 788f0499 Branch: premain Author: Theo Weidmann Committer: Christian Hagedorn Date: 2025-01-16 14:38:02 +0000 URL: https://git.openjdk.org/leyden/commit/788f04990aaf284da2067972bd62cc02d50166b6 8346607: IGV: Support drag-and-drop for opening graph files Reviewed-by: rcastanedalo, chagedorn, dfenacci, thartmann ! src/utils/IdealGraphVisualizer/Coordinator/src/main/java/com/sun/hotspot/igv/coordinator/OutlineTopComponent.java + src/utils/IdealGraphVisualizer/View/src/main/java/com/sun/hotspot/igv/view/PlaceholderTopComponent.java Changeset: e7795ccd Branch: premain Author: SendaoYan Date: 2025-01-16 15:40:21 +0000 URL: https://git.openjdk.org/leyden/commit/e7795ccdd9066804a8c93e8af0aa45e49bd20846 8347347: Build fails undefined symbol: __asan_init by clang17 Reviewed-by: erikj, jwaters ! make/autoconf/jdk-options.m4 Changeset: d218b540 Branch: premain Author: Coleen Phillimore Date: 2025-01-16 16:09:04 +0000 URL: https://git.openjdk.org/leyden/commit/d218b54086762d920bba0fc2ced47ea9148a3787 8347609: Replace SIZE_FORMAT in os/os_cpu/cpu directories Reviewed-by: matsaave, dholmes ! src/hotspot/cpu/aarch64/gc/z/zAddress_aarch64.cpp ! src/hotspot/cpu/arm/arm.ad ! src/hotspot/cpu/ppc/gc/z/zAddress_ppc.cpp ! src/hotspot/cpu/riscv/gc/z/zAddress_riscv.cpp ! src/hotspot/cpu/s390/macroAssembler_s390.inline.hpp ! src/hotspot/cpu/x86/gc/z/zAddress_x86.inline.hpp ! src/hotspot/os/aix/loadlib_aix.cpp ! src/hotspot/os/aix/os_aix.cpp ! src/hotspot/os/bsd/gc/z/zPhysicalMemoryBacking_bsd.cpp ! src/hotspot/os/bsd/os_bsd.cpp ! src/hotspot/os/linux/gc/z/zPhysicalMemoryBacking_linux.cpp ! src/hotspot/os/linux/hugepages.cpp ! src/hotspot/os/linux/os_linux.cpp ! src/hotspot/os/posix/os_posix.cpp ! src/hotspot/os/posix/perfMemory_posix.cpp ! src/hotspot/os/windows/gc/z/zMapper_windows.cpp ! src/hotspot/os/windows/gc/z/zPhysicalMemoryBacking_windows.cpp ! src/hotspot/os/windows/os_windows.cpp ! src/hotspot/os/windows/perfMemory_windows.cpp Changeset: 07a0dcba Branch: premain Author: Matthias Baesken Date: 2025-01-16 16:30:32 +0000 URL: https://git.openjdk.org/leyden/commit/07a0dcbabcb1216211c1da75f6dd2582da194df9 8347576: Error output in libjsound has non matching format strings Reviewed-by: mdoerr, serb, clanger ! src/java.desktop/share/native/libjsound/MidiInDevice.c ! src/java.desktop/share/native/libjsound/MidiOutDevice.c ! src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_MidiIn.cpp ! src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_Ports.c Changeset: 0330ca42 Branch: premain Author: William Kemper Date: 2025-01-16 20:53:17 +0000 URL: https://git.openjdk.org/leyden/commit/0330ca4221ba7bacb0eaeed1a8cdc3d5c3653a83 8347617: Shenandoah: Use consistent name for update references phase Reviewed-by: ysr ! src/hotspot/share/gc/shenandoah/shenandoahBarrierSet.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahConcurrentGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahConcurrentGC.hpp ! src/hotspot/share/gc/shenandoah/shenandoahDegeneratedGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahDegeneratedGC.hpp ! src/hotspot/share/gc/shenandoah/shenandoahGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGC.hpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationalHeap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.hpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahPacer.cpp ! src/hotspot/share/gc/shenandoah/shenandoahPacer.hpp ! src/hotspot/share/gc/shenandoah/shenandoahPacer.inline.hpp ! src/hotspot/share/gc/shenandoah/shenandoahPhaseTimings.hpp ! src/hotspot/share/gc/shenandoah/shenandoahVMOperations.cpp ! src/hotspot/share/gc/shenandoah/shenandoahVerifier.cpp ! src/hotspot/share/gc/shenandoah/shenandoahVerifier.hpp Changeset: 1f365cc6 Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-16 21:46:18 +0000 URL: https://git.openjdk.org/leyden/commit/1f365cc6c75d355588b91e356e9f5dac5fb3555d 8346433: Cannot use DllMain in hotspot for static builds Reviewed-by: dholmes, stuefe ! src/hotspot/os/windows/os_windows.cpp ! src/hotspot/os/windows/symbolengine.cpp ! src/hotspot/os/windows/symbolengine.hpp ! src/hotspot/os/windows/windbghelp.cpp ! src/hotspot/os/windows/windbghelp.hpp Changeset: aa21de56 Branch: premain Author: Quan Anh Mai Date: 2025-01-17 02:05:14 +0000 URL: https://git.openjdk.org/leyden/commit/aa21de566d387ab71adebdf798f7710a005c27b1 8347481: C2: Remove the control input of some nodes Reviewed-by: dfenacci, vlivanov, kvn ! src/hotspot/share/opto/addnode.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/loopopts.cpp ! src/hotspot/share/opto/movenode.cpp ! src/hotspot/share/opto/movenode.hpp ! src/hotspot/share/opto/mulnode.hpp ! src/hotspot/share/opto/subnode.cpp ! src/hotspot/share/opto/subnode.hpp Changeset: 398a5805 Branch: premain Author: Jayathirth D V Date: 2025-01-17 04:02:26 +0000 URL: https://git.openjdk.org/leyden/commit/398a580518b4e7961bdddf733e0a89ff25bc437a 8347911: Limit the length of inflated text chunks Reviewed-by: azvegint, prr ! src/java.desktop/share/classes/com/sun/imageio/plugins/png/PNGImageReader.java Changeset: a3eef6c2 Branch: premain Author: Matthias Baesken Date: 2025-01-17 07:58:52 +0000 URL: https://git.openjdk.org/leyden/commit/a3eef6c2416eb0e02fbd154d84c98b12bcb66e97 8346875: Test jdk/jdk/jfr/event/os/TestCPULoad.java fails on macOS Reviewed-by: egahlin ! test/jdk/jdk/jfr/event/os/TestCPULoad.java Changeset: f5573f5c Branch: premain Author: Amit Kumar Date: 2025-01-17 10:21:15 +0000 URL: https://git.openjdk.org/leyden/commit/f5573f5cbdcae5d1303c8b58d2946c168b977326 8330851: C2: More efficient TypeFunc creation Reviewed-by: vlivanov, dlong ! src/hotspot/share/opto/arraycopynode.cpp ! src/hotspot/share/opto/arraycopynode.hpp ! src/hotspot/share/opto/callnode.cpp ! src/hotspot/share/opto/callnode.hpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/runtime.cpp ! src/hotspot/share/opto/runtime.hpp ! src/hotspot/share/opto/type.cpp Changeset: 8460072f Branch: premain Author: Gui Cao Committer: Fei Yang Date: 2025-01-17 11:31:48 +0000 URL: https://git.openjdk.org/leyden/commit/8460072f9ddcec5d1f86e3c4de3d1457771b805c 8342881: RISC-V: secondary_super_cache does not scale well: C1 and interpreter Reviewed-by: fyang, fjiang ! src/hotspot/cpu/riscv/c1_Runtime1_riscv.cpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.hpp ! src/hotspot/cpu/riscv/riscv.ad ! src/hotspot/cpu/riscv/stubGenerator_riscv.cpp Changeset: 3ab521e1 Branch: premain Author: Coleen Phillimore Date: 2025-01-17 12:16:44 +0000 URL: https://git.openjdk.org/leyden/commit/3ab521e1a1245e578e37d0638c659588e782ec50 8347924: Replace SIZE_FORMAT in memory and metaspace Reviewed-by: jsjolen, matsaave ! src/hotspot/share/memory/arena.cpp ! src/hotspot/share/memory/classLoaderMetaspace.cpp ! src/hotspot/share/memory/guardedMemory.cpp ! src/hotspot/share/memory/memoryReserver.cpp ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/memory/metaspace/binList.hpp ! src/hotspot/share/memory/metaspace/blockTree.cpp ! src/hotspot/share/memory/metaspace/blockTree.hpp ! src/hotspot/share/memory/metaspace/chunkManager.cpp ! src/hotspot/share/memory/metaspace/chunklevel.cpp ! src/hotspot/share/memory/metaspace/commitMask.cpp ! src/hotspot/share/memory/metaspace/freeChunkList.cpp ! src/hotspot/share/memory/metaspace/metablock.hpp ! src/hotspot/share/memory/metaspace/metachunk.cpp ! src/hotspot/share/memory/metaspace/metachunk.hpp ! src/hotspot/share/memory/metaspace/metaspaceArena.cpp ! src/hotspot/share/memory/metaspace/metaspaceCommon.cpp ! src/hotspot/share/memory/metaspace/metaspaceCommon.hpp ! src/hotspot/share/memory/metaspace/metaspaceSettings.cpp ! src/hotspot/share/memory/metaspace/metaspaceStatistics.cpp ! src/hotspot/share/memory/metaspace/testHelpers.cpp ! src/hotspot/share/memory/metaspace/virtualSpaceList.cpp ! src/hotspot/share/memory/metaspace/virtualSpaceNode.cpp ! src/hotspot/share/memory/resourceArea.hpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/memory/virtualspace.cpp Changeset: 15e06b61 Branch: premain Author: Prasanta Sadhukhan Date: 2025-01-17 12:54:54 +0000 URL: https://git.openjdk.org/leyden/commit/15e06b61867a65c2b554efa6caf464b39ff8375a 8345618: javax/swing/text/Caret/8163124/CaretFloatingPointAPITest.java leaves Caret is not complete Reviewed-by: azvegint ! test/jdk/javax/swing/text/Caret/8163124/CaretFloatingPointAPITest.java Changeset: 2c41f5ad Branch: premain Author: Zhengyu Gu Date: 2025-01-17 13:39:22 +0000 URL: https://git.openjdk.org/leyden/commit/2c41f5adbfcebb057c2ffc8396729bdd1c100079 8347959: ThreadDumper leaks memory Reviewed-by: amenkov, sspitsyn, shade ! src/hotspot/share/services/heapDumper.cpp Changeset: 2ca1b4d4 Branch: premain Author: Leonid Mesnik Date: 2025-01-17 15:43:04 +0000 URL: https://git.openjdk.org/leyden/commit/2ca1b4d48da7eb9b5baf0ac213f3ce87f47dd316 8347840: Fix testlibrary compilation warnings Reviewed-by: dholmes ! make/test/BuildTestLib.gmk ! test/lib/jdk/test/lib/Asserts.java ! test/lib/jdk/test/lib/apps/LingeredApp.java ! test/lib/jdk/test/lib/artifacts/ArtifactResolver.java ! test/lib/jdk/test/lib/artifacts/ArtifactResolverException.java ! test/lib/jdk/test/lib/artifacts/JibArtifactManager.java ! test/lib/jdk/test/lib/classloader/ClassUnloadCommon.java ! test/lib/jdk/test/lib/classloader/GeneratingClassLoader.java ! test/lib/jdk/test/lib/classloader/GeneratingCompilingClassLoader.java ! test/lib/jdk/test/lib/format/ArrayDiff.java ! test/lib/jdk/test/lib/hprof/model/JavaHeapObject.java ! test/lib/jdk/test/lib/hprof/model/JavaStatic.java ! test/lib/jdk/test/lib/hprof/model/JavaThing.java ! test/lib/jdk/test/lib/hprof/model/Root.java ! test/lib/jdk/test/lib/hprof/model/Snapshot.java ! test/lib/jdk/test/lib/hprof/model/StackFrame.java ! test/lib/jdk/test/lib/hprof/model/StackTrace.java ! test/lib/jdk/test/lib/hprof/parser/FileReadBuffer.java ! test/lib/jdk/test/lib/hprof/parser/MappedReadBuffer.java ! test/lib/jdk/test/lib/hprof/parser/ReadBuffer.java ! test/lib/jdk/test/lib/hprof/parser/Reader.java ! test/lib/jdk/test/lib/jfr/Events.java ! test/lib/jdk/test/lib/jvmti/DebugeeClass.java ! test/lib/jdk/test/lib/management/ThreadMXBeanTool.java ! test/lib/jdk/test/lib/net/IPSupport.java ! test/lib/jdk/test/lib/os/linux/HugePageConfiguration.java ! test/lib/jdk/test/lib/process/ProcessTools.java ! test/lib/jdk/test/lib/thread/VThreadPinner.java ! test/lib/jdk/test/lib/thread/VThreadRunner.java ! test/lib/jdk/test/lib/util/FileUtils.java Changeset: baca7daa Branch: premain Author: Coleen Phillimore Date: 2025-01-17 16:24:47 +0000 URL: https://git.openjdk.org/leyden/commit/baca7daa32d553b647bdb33bb74a0eb84542deeb 8347733: Replace SIZE_FORMAT in runtime code Reviewed-by: matsaave, sspitsyn, dholmes ! src/hotspot/share/cds/aotLinkedClassBulkLoader.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveHeapLoader.cpp ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/archiveUtils.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/classFileParser.cpp ! src/hotspot/share/classfile/classLoaderStats.cpp ! src/hotspot/share/classfile/dictionary.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/symbolTable.cpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeHeapState.cpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/logging/logAsyncWriter.cpp ! src/hotspot/share/logging/logConfiguration.cpp ! src/hotspot/share/logging/logFileOutput.cpp ! src/hotspot/share/logging/logSelection.cpp ! src/hotspot/share/logging/logSelectionList.cpp ! src/hotspot/share/nmt/mallocTracker.cpp ! src/hotspot/share/nmt/memReporter.cpp ! src/hotspot/share/nmt/memoryFileTracker.cpp ! src/hotspot/share/nmt/nmtPreInit.cpp ! src/hotspot/share/nmt/virtualMemoryTracker.cpp ! src/hotspot/share/nmt/vmatree.cpp ! src/hotspot/share/oops/array.hpp ! src/hotspot/share/oops/compressedOops.cpp ! src/hotspot/share/oops/instanceKlass.cpp ! src/hotspot/share/oops/instanceMirrorKlass.cpp ! src/hotspot/share/oops/oop.inline.hpp ! src/hotspot/share/oops/stackChunkOop.cpp ! src/hotspot/share/prims/jvmtiEnter.xsl ! src/hotspot/share/prims/resolvedMethodTable.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/deoptimization.cpp ! src/hotspot/share/runtime/flags/jvmFlag.cpp ! src/hotspot/share/runtime/flags/jvmFlagAccess.cpp ! src/hotspot/share/runtime/flags/jvmFlagConstraintsCompiler.cpp ! src/hotspot/share/runtime/flags/jvmFlagConstraintsRuntime.cpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/jniHandles.cpp ! src/hotspot/share/runtime/os.cpp ! src/hotspot/share/runtime/perfData.cpp ! src/hotspot/share/runtime/perfMemory.cpp ! src/hotspot/share/runtime/reflection.cpp ! src/hotspot/share/runtime/stackOverflow.cpp ! src/hotspot/share/runtime/synchronizer.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/services/diagnosticCommand.cpp ! src/hotspot/share/services/heapDumperCompression.cpp ! src/hotspot/share/services/lowMemoryDetector.cpp ! src/hotspot/share/services/threadIdTable.cpp ! src/hotspot/share/services/writeableFlags.cpp ! src/hotspot/share/utilities/bitMap.cpp ! src/hotspot/share/utilities/bitMap.hpp ! src/hotspot/share/utilities/chunkedList.hpp ! src/hotspot/share/utilities/concurrentHashTable.inline.hpp ! src/hotspot/share/utilities/copy.cpp ! src/hotspot/share/utilities/elfFile.cpp ! src/hotspot/share/utilities/globalDefinitions.hpp ! src/hotspot/share/utilities/ostream.cpp ! src/hotspot/share/utilities/tableStatistics.cpp ! src/hotspot/share/utilities/vmError.cpp Changeset: 6cc1c0ab Branch: premain Author: Jatin Bhateja Date: 2025-01-17 18:05:13 +0000 URL: https://git.openjdk.org/leyden/commit/6cc1c0abdbf8cd3d01722951cf34ebcb667f1380 8347422: Crash during safepoint handler execution with -XX:+UseAPX Reviewed-by: kvn, sviswanathan, thartmann ! src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp Changeset: 17e3df65 Branch: premain Author: Calvin Cheung Date: 2025-01-17 18:46:17 +0000 URL: https://git.openjdk.org/leyden/commit/17e3df652feb2a0fb960cd235c0efc4b482731d6 8347763: [doc] Add documentation of module options for JEP 483 Reviewed-by: iklam ! src/java.base/share/man/java.md Changeset: 6ef860c7 Branch: premain Author: Serguei Spitsyn Date: 2025-01-18 00:28:30 +0000 URL: https://git.openjdk.org/leyden/commit/6ef860c728d3f2f29fe8f7318c0f56032e0679be 8332857: Test vmTestbase/nsk/jvmti/GetThreadCpuTime/thrcputime002/TestDescription.java failed Reviewed-by: lmesnik, cjplummer, amenkov ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/GetThreadCpuTime/thrcputime002/thrcputime002.cpp Changeset: e1cf3517 Branch: premain Author: Calvin Cheung Date: 2025-01-18 00:34:27 +0000 URL: https://git.openjdk.org/leyden/commit/e1cf3517ae0dcfa98e22d669f9f624dfbbd6ab73 8348013: [doc] fix typo in java.md caused by JDK-8347763 Reviewed-by: iklam ! src/java.base/share/man/java.md Changeset: 0ff67000 Branch: premain Author: Robbin Ehn Date: 2025-01-18 08:41:00 +0000 URL: https://git.openjdk.org/leyden/commit/0ff67000dc22e8c58e8a9ed1379010f4a2ad7666 8347987: Bad ifdef in 8330851 Reviewed-by: stefank, mdoerr, syan, amitkumar ! src/hotspot/share/opto/runtime.cpp ! src/hotspot/share/opto/runtime.hpp Changeset: ca8ba5c8 Branch: premain Author: Robbin Ehn Date: 2025-01-18 09:16:22 +0000 URL: https://git.openjdk.org/leyden/commit/ca8ba5c890206546c79ce781878a3f8978e637f9 8347366: RISC-V: Add extension asserts for CMO instructions Reviewed-by: fyang, mli ! src/hotspot/cpu/riscv/assembler_riscv.hpp Changeset: 1f0efc00 Branch: premain Author: Robbin Ehn Date: 2025-01-18 09:19:21 +0000 URL: https://git.openjdk.org/leyden/commit/1f0efc00913e57690b57b7425bcc7dd6373e698f 8347343: RISC-V: Unchecked zicntr csr reads Reviewed-by: fyang, mli ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.hpp ! src/hotspot/cpu/riscv/vm_version_riscv.hpp Changeset: 3804082c Branch: premain Author: Robert Toyonaga Committer: Thomas Stuefe Date: 2025-01-18 17:21:28 +0000 URL: https://git.openjdk.org/leyden/commit/3804082cba56e6d26c500880cc5cbe6d4332d8f8 8346123: [REDO] NMT should not use ThreadCritical Reviewed-by: dholmes, coleenp, stuefe ! src/hotspot/os/posix/perfMemory_posix.cpp ! src/hotspot/os/windows/os_windows.cpp ! src/hotspot/os/windows/perfMemory_windows.cpp ! src/hotspot/share/nmt/memBaseline.cpp ! src/hotspot/share/nmt/memReporter.cpp ! src/hotspot/share/nmt/memTracker.cpp ! src/hotspot/share/nmt/memTracker.hpp ! src/hotspot/share/nmt/memoryFileTracker.cpp ! src/hotspot/share/nmt/memoryFileTracker.hpp ! src/hotspot/share/nmt/nmtUsage.cpp ! src/hotspot/share/nmt/threadStackTracker.cpp ! src/hotspot/share/nmt/virtualMemoryTracker.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/mutexLocker.hpp ! src/hotspot/share/runtime/os.cpp ! src/hotspot/share/runtime/threads.cpp ! src/hotspot/share/utilities/vmError.cpp ! test/hotspot/gtest/runtime/test_virtualMemoryTracker.cpp Changeset: 644d154c Branch: premain Author: Archie Cobbs Date: 2025-01-19 14:57:08 +0000 URL: https://git.openjdk.org/leyden/commit/644d154c7c771236904560fc5b91f149a6a646cf 8347474: Options singleton is used before options are parsed Reviewed-by: vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Lint.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Preview.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/file/BaseFileManager.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassReader.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/main/Arguments.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/main/Option.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/main/OptionHelper.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/processing/JavacFiler.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/JCDiagnostic.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/JavacMessages.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/Log.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/Options.java + test/langtools/tools/javac/options/OptionsOrderingTest.java Changeset: e7a1c866 Branch: premain Author: Volkan Yaz?c? Committer: Jaikiran Pai Date: 2025-01-20 06:53:25 +0000 URL: https://git.openjdk.org/leyden/commit/e7a1c8660af50a321bc466be2b30412a5b5c4e3c 8217914: java/net/httpclient/ConnectTimeoutHandshakeSync.java failed on connection refused while doing POST Reviewed-by: dfuchs, jpai ! test/jdk/java/net/httpclient/AbstractConnectTimeoutHandshake.java ! test/jdk/java/net/httpclient/ConnectTimeoutHandshakeAsync.java ! test/jdk/java/net/httpclient/ConnectTimeoutHandshakeSync.java Changeset: 4b4b1e91 Branch: premain Author: Markus Gr?nlund Date: 2025-01-20 08:54:15 +0000 URL: https://git.openjdk.org/leyden/commit/4b4b1e912a3193cc95c956acc770015f707449b1 8347922: Remove runtime/cds/appcds/customLoader/HelloCustom_JFR.java from ProblemList.txt Reviewed-by: egahlin ! test/hotspot/jtreg/ProblemList.txt Changeset: c207cc7e Branch: premain Author: Albert Mingkun Yang Date: 2025-01-20 09:51:45 +0000 URL: https://git.openjdk.org/leyden/commit/c207cc7e705d3f449f2387324d86cfb31ce40c44 8347923: Parallel: Simplify compute_survivor_space_size_and_threshold Reviewed-by: tschatzl ! src/hotspot/share/gc/parallel/psAdaptiveSizePolicy.cpp Changeset: 85fdd2cc Branch: premain Author: Aleksey Shipilev Date: 2025-01-20 12:18:05 +0000 URL: https://git.openjdk.org/leyden/commit/85fdd2cc12660bef0d4334ef96afe1865ddd0c38 8347434: Richer VM operations events logging Reviewed-by: dholmes, jsjolen ! src/hotspot/share/runtime/vmThread.cpp Changeset: 8a83dc21 Branch: premain Author: Christian Hagedorn Date: 2025-01-20 12:24:33 +0000 URL: https://git.openjdk.org/leyden/commit/8a83dc213ac630ec79d62637133fe7aa102a27a3 8347018: C2: Insertion of Assertion Predicates ignores the effects of PhaseIdealLoop::clone_up_backedge_goo() Reviewed-by: epeter, kvn ! src/hotspot/share/opto/loopTransform.cpp ! src/hotspot/share/opto/loopnode.hpp ! src/hotspot/share/opto/predicates.cpp ! src/hotspot/share/opto/predicates.hpp + test/hotspot/jtreg/compiler/predicates/assertion/TestLoadPinnedAboveAssertionPredicatesAndUsingStore.java Changeset: 3c923926 Branch: premain Author: Albert Mingkun Yang Date: 2025-01-20 12:44:21 +0000 URL: https://git.openjdk.org/leyden/commit/3c9239263f89ad505c19f27626e824740079712a 8348089: Serial: Remove virtual specifier in SerialHeap Reviewed-by: stefank ! src/hotspot/share/gc/serial/serialHeap.hpp Changeset: 93469847 Branch: premain Author: Andrey Turbanov Date: 2025-01-20 12:54:58 +0000 URL: https://git.openjdk.org/leyden/commit/9346984725ed09e9917e825094b34c3a033af23e 8347916: Simplify javax.swing.text.html.CSS.LengthUnit.getValue Reviewed-by: azvegint, aivanov ! src/java.desktop/share/classes/javax/swing/text/html/CSS.java Changeset: 0fbf10a9 Branch: premain Author: Archie Cobbs Date: 2025-01-20 14:20:10 +0000 URL: https://git.openjdk.org/leyden/commit/0fbf10a9cf51d01d82cd43cf0edfaeee83313a9c 8348038: Docs build failing in Options.notifyListeners with AssertionError Reviewed-by: jlahoda, mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/file/BaseFileManager.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/file/JavacFileManager.java + test/langtools/tools/javac/options/JavadocIgnoreSymbolFile.java Changeset: 3a4d5ff7 Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-20 16:29:00 +0000 URL: https://git.openjdk.org/leyden/commit/3a4d5ff7a326298e664e876f660c20170ca9f4a5 8347996: JavaCompilation.gmk should not include ZipArchive.gmk Reviewed-by: erikj ! make/CompileDemos.gmk ! make/common/JavaCompilation.gmk Changeset: ca863fd5 Branch: premain Author: Zhengyu Gu Date: 2025-01-20 19:13:59 +0000 URL: https://git.openjdk.org/leyden/commit/ca863fd5ab309c502ea36f2d778ae3de5674e24f 8347758: modules.cpp leaks string returned from get_numbered_property_as_sorted_string() Reviewed-by: dholmes, iklam, ccheung ! src/hotspot/share/classfile/modules.cpp Changeset: 955bf185 Branch: premain Author: David Holmes Date: 2025-01-20 20:31:26 +0000 URL: https://git.openjdk.org/leyden/commit/955bf185c38ec0fcedb0a549461fc85367b37fbb 8348040: Bad use of ifdef with INCLUDE_xxx GC macros Reviewed-by: stefank, shade ! src/hotspot/share/c1/c1_LIR.hpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/mutexLocker.hpp Changeset: 6b919854 Branch: premain Author: Amit Kumar Date: 2025-01-21 03:53:43 +0000 URL: https://git.openjdk.org/leyden/commit/6b9198541b1adc179abc1a8222e28540dcb0e786 8346157: [Ubsan]: runtime error: pointer index expression with base 0x000000001000 overflowed to 0xfffffffffffffff0 Reviewed-by: stuefe, aph ! src/hotspot/share/nmt/mallocTracker.cpp Changeset: 0f426e4a Branch: premain Author: Emanuel Peter Date: 2025-01-21 07:05:05 +0000 URL: https://git.openjdk.org/leyden/commit/0f426e4a6d38423f4945d993e440ee62a7d59e7f 8343685: C2 SuperWord: refactor VPointer with MemPointer Co-authored-by: Christian Hagedorn Reviewed-by: kvn, chagedorn ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/opto/memnode.cpp ! src/hotspot/share/opto/mempointer.cpp ! src/hotspot/share/opto/mempointer.hpp ! src/hotspot/share/opto/noOverflowInt.hpp ! src/hotspot/share/opto/superword.cpp ! src/hotspot/share/opto/superword.hpp ! src/hotspot/share/opto/superwordVTransformBuilder.cpp ! src/hotspot/share/opto/traceAutoVectorizationTag.hpp ! src/hotspot/share/opto/traceMergeStoresTag.hpp ! src/hotspot/share/opto/vectorization.cpp ! src/hotspot/share/opto/vectorization.hpp ! src/hotspot/share/opto/vtransform.cpp ! src/hotspot/share/opto/vtransform.hpp ! test/hotspot/jtreg/compiler/loopopts/superword/TestAlignVector.java + test/hotspot/jtreg/compiler/loopopts/superword/TestEquivalentInvariants.java ! test/hotspot/jtreg/compiler/loopopts/superword/TestLargeScaleAndStride.java ! test/hotspot/jtreg/compiler/loopopts/superword/TestMemorySegment.java Changeset: f54e0bf2 Branch: premain Author: Theo Weidmann Committer: Emanuel Peter Date: 2025-01-21 09:15:18 +0000 URL: https://git.openjdk.org/leyden/commit/f54e0bf267280c270b0e181289498b28aaf36ee6 8345766: C2 should emit macro nodes for ModF/ModD instead of calls during parsing Reviewed-by: kvn, epeter ! src/hotspot/cpu/x86/x86_32.ad ! src/hotspot/share/opto/callnode.cpp ! src/hotspot/share/opto/divnode.cpp ! src/hotspot/share/opto/divnode.hpp ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/opto/macro.cpp ! src/hotspot/share/opto/parse.hpp ! src/hotspot/share/opto/parse2.cpp + test/hotspot/jtreg/compiler/c2/irTests/ModDNodeTests.java + test/hotspot/jtreg/compiler/c2/irTests/ModFNodeTests.java ! test/hotspot/jtreg/compiler/lib/ir_framework/IRNode.java Changeset: c33c1cfe Branch: premain Author: Stefan Karlsson Date: 2025-01-21 10:21:24 +0000 URL: https://git.openjdk.org/leyden/commit/c33c1cfe7349ac657cd7bf54861227709d3c8f1b 8347909: Automatic precompiled.hpp inclusion Reviewed-by: lkorinth, erikj, dholmes, ihse ! make/common/native/CompileFile.gmk ! make/hotspot/lib/JvmFlags.gmk ! src/hotspot/cpu/aarch64/abstractInterpreter_aarch64.cpp ! src/hotspot/cpu/aarch64/assembler_aarch64.cpp ! src/hotspot/cpu/aarch64/bytecodes_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_CodeStubs_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_FpuStackSim_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_FrameMap_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_LIRGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_LIR_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_LinearScan_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_MacroAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_Runtime1_aarch64.cpp ! src/hotspot/cpu/aarch64/c2_CodeStubs_aarch64.cpp ! src/hotspot/cpu/aarch64/c2_MacroAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/c2_init_aarch64.cpp ! src/hotspot/cpu/aarch64/codeBuffer_aarch64.cpp ! src/hotspot/cpu/aarch64/compiledIC_aarch64.cpp ! src/hotspot/cpu/aarch64/compressedKlass_aarch64.cpp ! src/hotspot/cpu/aarch64/downcallLinker_aarch64.cpp ! src/hotspot/cpu/aarch64/foreignGlobals_aarch64.cpp ! src/hotspot/cpu/aarch64/frame_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/g1/g1BarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/shared/barrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/shared/barrierSetNMethod_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/shared/cardTableBarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/shared/modRefBarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/shenandoah/c1/shenandoahBarrierSetC1_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/z/zAddress_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/z/zBarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/icache_aarch64.cpp ! src/hotspot/cpu/aarch64/immediate_aarch64.cpp ! src/hotspot/cpu/aarch64/interp_masm_aarch64.cpp ! src/hotspot/cpu/aarch64/interpreterRT_aarch64.cpp ! src/hotspot/cpu/aarch64/jniFastGetField_aarch64.cpp ! src/hotspot/cpu/aarch64/jvmciCodeInstaller_aarch64.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64_aes.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64_chacha.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64_trig.cpp ! src/hotspot/cpu/aarch64/methodHandles_aarch64.cpp ! src/hotspot/cpu/aarch64/nativeInst_aarch64.cpp ! src/hotspot/cpu/aarch64/registerMap_aarch64.cpp ! src/hotspot/cpu/aarch64/register_aarch64.cpp ! src/hotspot/cpu/aarch64/relocInfo_aarch64.cpp ! src/hotspot/cpu/aarch64/runtime_aarch64.cpp ! src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/stubRoutines_aarch64.cpp ! src/hotspot/cpu/aarch64/templateInterpreterGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/templateTable_aarch64.cpp ! src/hotspot/cpu/aarch64/upcallLinker_aarch64.cpp ! src/hotspot/cpu/aarch64/vm_version_aarch64.cpp ! src/hotspot/cpu/aarch64/vmreg_aarch64.cpp ! src/hotspot/cpu/aarch64/vtableStubs_aarch64.cpp ! src/hotspot/cpu/arm/abstractInterpreter_arm.cpp ! src/hotspot/cpu/arm/assembler_arm.cpp ! src/hotspot/cpu/arm/assembler_arm_32.cpp ! src/hotspot/cpu/arm/c1_CodeStubs_arm.cpp ! src/hotspot/cpu/arm/c1_FrameMap_arm.cpp ! src/hotspot/cpu/arm/c1_LIRAssembler_arm.cpp ! src/hotspot/cpu/arm/c1_LIRGenerator_arm.cpp ! src/hotspot/cpu/arm/c1_LIR_arm.cpp ! src/hotspot/cpu/arm/c1_LinearScan_arm.cpp ! src/hotspot/cpu/arm/c1_MacroAssembler_arm.cpp ! src/hotspot/cpu/arm/c1_Runtime1_arm.cpp ! src/hotspot/cpu/arm/c2_MacroAssembler_arm.cpp ! src/hotspot/cpu/arm/compiledIC_arm.cpp ! src/hotspot/cpu/arm/downcallLinker_arm.cpp ! src/hotspot/cpu/arm/foreignGlobals_arm.cpp ! src/hotspot/cpu/arm/frame_arm.cpp ! src/hotspot/cpu/arm/gc/g1/g1BarrierSetAssembler_arm.cpp ! src/hotspot/cpu/arm/gc/shared/barrierSetAssembler_arm.cpp ! src/hotspot/cpu/arm/gc/shared/barrierSetNMethod_arm.cpp ! src/hotspot/cpu/arm/gc/shared/cardTableBarrierSetAssembler_arm.cpp ! src/hotspot/cpu/arm/gc/shared/modRefBarrierSetAssembler_arm.cpp ! src/hotspot/cpu/arm/icache_arm.cpp ! src/hotspot/cpu/arm/interp_masm_arm.cpp ! src/hotspot/cpu/arm/interpreterRT_arm.cpp ! src/hotspot/cpu/arm/jniFastGetField_arm.cpp ! src/hotspot/cpu/arm/macroAssembler_arm.cpp ! src/hotspot/cpu/arm/methodHandles_arm.cpp ! src/hotspot/cpu/arm/nativeInst_arm_32.cpp ! src/hotspot/cpu/arm/register_arm.cpp ! src/hotspot/cpu/arm/relocInfo_arm.cpp ! src/hotspot/cpu/arm/runtime_arm.cpp ! src/hotspot/cpu/arm/sharedRuntime_arm.cpp ! src/hotspot/cpu/arm/stubGenerator_arm.cpp ! src/hotspot/cpu/arm/stubRoutines_arm.cpp ! src/hotspot/cpu/arm/templateInterpreterGenerator_arm.cpp ! src/hotspot/cpu/arm/templateTable_arm.cpp ! src/hotspot/cpu/arm/upcallLinker_arm.cpp ! src/hotspot/cpu/arm/vm_version_arm_32.cpp ! src/hotspot/cpu/arm/vmreg_arm.cpp ! src/hotspot/cpu/arm/vtableStubs_arm.cpp ! src/hotspot/cpu/ppc/abstractInterpreter_ppc.cpp ! src/hotspot/cpu/ppc/assembler_ppc.cpp ! src/hotspot/cpu/ppc/c1_CodeStubs_ppc.cpp ! src/hotspot/cpu/ppc/c1_FrameMap_ppc.cpp ! src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.cpp ! src/hotspot/cpu/ppc/c1_LIRGenerator_ppc.cpp ! src/hotspot/cpu/ppc/c1_LIR_ppc.cpp ! src/hotspot/cpu/ppc/c1_LinearScan_ppc.cpp ! src/hotspot/cpu/ppc/c1_MacroAssembler_ppc.cpp ! src/hotspot/cpu/ppc/c1_Runtime1_ppc.cpp ! src/hotspot/cpu/ppc/c2_CodeStubs_ppc.cpp ! src/hotspot/cpu/ppc/c2_MacroAssembler_ppc.cpp ! src/hotspot/cpu/ppc/c2_init_ppc.cpp ! src/hotspot/cpu/ppc/compiledIC_ppc.cpp ! src/hotspot/cpu/ppc/compressedKlass_ppc.cpp ! src/hotspot/cpu/ppc/downcallLinker_ppc.cpp ! src/hotspot/cpu/ppc/foreignGlobals_ppc.cpp ! src/hotspot/cpu/ppc/frame_ppc.cpp ! src/hotspot/cpu/ppc/gc/g1/g1BarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/shared/barrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/shared/barrierSetNMethod_ppc.cpp ! src/hotspot/cpu/ppc/gc/shared/cardTableBarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/shared/modRefBarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/shenandoah/c1/shenandoahBarrierSetC1_ppc.cpp ! src/hotspot/cpu/ppc/gc/shenandoah/shenandoahBarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/z/zAddress_ppc.cpp ! src/hotspot/cpu/ppc/gc/z/zBarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/icache_ppc.cpp ! src/hotspot/cpu/ppc/interp_masm_ppc_64.cpp ! src/hotspot/cpu/ppc/interpreterRT_ppc.cpp ! src/hotspot/cpu/ppc/jniFastGetField_ppc.cpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.cpp ! src/hotspot/cpu/ppc/methodHandles_ppc.cpp ! src/hotspot/cpu/ppc/nativeInst_ppc.cpp ! src/hotspot/cpu/ppc/register_ppc.cpp ! src/hotspot/cpu/ppc/relocInfo_ppc.cpp ! src/hotspot/cpu/ppc/runtime_ppc.cpp ! src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp ! src/hotspot/cpu/ppc/stubGenerator_ppc.cpp ! src/hotspot/cpu/ppc/stubRoutines_ppc_64.cpp ! src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp ! src/hotspot/cpu/ppc/templateTable_ppc_64.cpp ! src/hotspot/cpu/ppc/upcallLinker_ppc.cpp ! src/hotspot/cpu/ppc/vm_version_ppc.cpp ! src/hotspot/cpu/ppc/vmreg_ppc.cpp ! src/hotspot/cpu/ppc/vtableStubs_ppc_64.cpp ! src/hotspot/cpu/riscv/abstractInterpreter_riscv.cpp ! src/hotspot/cpu/riscv/assembler_riscv.cpp ! src/hotspot/cpu/riscv/c1_CodeStubs_riscv.cpp ! src/hotspot/cpu/riscv/c1_FrameMap_riscv.cpp ! src/hotspot/cpu/riscv/c1_LIRAssembler_arith_riscv.cpp ! src/hotspot/cpu/riscv/c1_LIRAssembler_arraycopy_riscv.cpp ! src/hotspot/cpu/riscv/c1_LIRAssembler_riscv.cpp ! src/hotspot/cpu/riscv/c1_LIRGenerator_riscv.cpp ! src/hotspot/cpu/riscv/c1_LIR_riscv.cpp ! src/hotspot/cpu/riscv/c1_LinearScan_riscv.cpp ! src/hotspot/cpu/riscv/c1_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/c1_Runtime1_riscv.cpp ! src/hotspot/cpu/riscv/c2_CodeStubs_riscv.cpp ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/c2_init_riscv.cpp ! src/hotspot/cpu/riscv/codeBuffer_riscv.cpp ! src/hotspot/cpu/riscv/compiledIC_riscv.cpp ! src/hotspot/cpu/riscv/compressedKlass_riscv.cpp ! src/hotspot/cpu/riscv/downcallLinker_riscv.cpp ! src/hotspot/cpu/riscv/foreignGlobals_riscv.cpp ! src/hotspot/cpu/riscv/frame_riscv.cpp ! src/hotspot/cpu/riscv/gc/g1/g1BarrierSetAssembler_riscv.cpp ! src/hotspot/cpu/riscv/gc/shared/barrierSetAssembler_riscv.cpp ! src/hotspot/cpu/riscv/gc/shared/barrierSetNMethod_riscv.cpp ! src/hotspot/cpu/riscv/gc/shared/cardTableBarrierSetAssembler_riscv.cpp ! src/hotspot/cpu/riscv/gc/shared/modRefBarrierSetAssembler_riscv.cpp ! src/hotspot/cpu/riscv/gc/shenandoah/c1/shenandoahBarrierSetC1_riscv.cpp ! src/hotspot/cpu/riscv/gc/shenandoah/shenandoahBarrierSetAssembler_riscv.cpp ! src/hotspot/cpu/riscv/gc/z/zAddress_riscv.cpp ! src/hotspot/cpu/riscv/gc/z/zBarrierSetAssembler_riscv.cpp ! src/hotspot/cpu/riscv/icache_riscv.cpp ! src/hotspot/cpu/riscv/interp_masm_riscv.cpp ! src/hotspot/cpu/riscv/interpreterRT_riscv.cpp ! src/hotspot/cpu/riscv/jniFastGetField_riscv.cpp ! src/hotspot/cpu/riscv/jvmciCodeInstaller_riscv.cpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/methodHandles_riscv.cpp ! src/hotspot/cpu/riscv/nativeInst_riscv.cpp ! src/hotspot/cpu/riscv/registerMap_riscv.cpp ! src/hotspot/cpu/riscv/register_riscv.cpp ! src/hotspot/cpu/riscv/relocInfo_riscv.cpp ! src/hotspot/cpu/riscv/runtime_riscv.cpp ! src/hotspot/cpu/riscv/sharedRuntime_riscv.cpp ! src/hotspot/cpu/riscv/stubGenerator_riscv.cpp ! src/hotspot/cpu/riscv/stubRoutines_riscv.cpp ! src/hotspot/cpu/riscv/templateInterpreterGenerator_riscv.cpp ! src/hotspot/cpu/riscv/templateTable_riscv.cpp ! src/hotspot/cpu/riscv/upcallLinker_riscv.cpp ! src/hotspot/cpu/riscv/vm_version_riscv.cpp ! src/hotspot/cpu/riscv/vmreg_riscv.cpp ! src/hotspot/cpu/riscv/vtableStubs_riscv.cpp ! src/hotspot/cpu/s390/abstractInterpreter_s390.cpp ! src/hotspot/cpu/s390/assembler_s390.cpp ! src/hotspot/cpu/s390/c1_CodeStubs_s390.cpp ! src/hotspot/cpu/s390/c1_FrameMap_s390.cpp ! src/hotspot/cpu/s390/c1_LIRAssembler_s390.cpp ! src/hotspot/cpu/s390/c1_LIRGenerator_s390.cpp ! src/hotspot/cpu/s390/c1_LIR_s390.cpp ! src/hotspot/cpu/s390/c1_LinearScan_s390.cpp ! src/hotspot/cpu/s390/c1_MacroAssembler_s390.cpp ! src/hotspot/cpu/s390/c1_Runtime1_s390.cpp ! src/hotspot/cpu/s390/c2_MacroAssembler_s390.cpp ! src/hotspot/cpu/s390/c2_init_s390.cpp ! src/hotspot/cpu/s390/compiledIC_s390.cpp ! src/hotspot/cpu/s390/compressedKlass_s390.cpp ! src/hotspot/cpu/s390/downcallLinker_s390.cpp ! src/hotspot/cpu/s390/foreignGlobals_s390.cpp ! src/hotspot/cpu/s390/frame_s390.cpp ! src/hotspot/cpu/s390/gc/g1/g1BarrierSetAssembler_s390.cpp ! src/hotspot/cpu/s390/gc/shared/barrierSetAssembler_s390.cpp ! src/hotspot/cpu/s390/gc/shared/barrierSetNMethod_s390.cpp ! src/hotspot/cpu/s390/gc/shared/cardTableBarrierSetAssembler_s390.cpp ! src/hotspot/cpu/s390/gc/shared/modRefBarrierSetAssembler_s390.cpp ! src/hotspot/cpu/s390/interp_masm_s390.cpp ! src/hotspot/cpu/s390/interpreterRT_s390.cpp ! src/hotspot/cpu/s390/jniFastGetField_s390.cpp ! src/hotspot/cpu/s390/macroAssembler_s390.cpp ! src/hotspot/cpu/s390/methodHandles_s390.cpp ! src/hotspot/cpu/s390/nativeInst_s390.cpp ! src/hotspot/cpu/s390/register_s390.cpp ! src/hotspot/cpu/s390/relocInfo_s390.cpp ! src/hotspot/cpu/s390/runtime_s390.cpp ! src/hotspot/cpu/s390/sharedRuntime_s390.cpp ! src/hotspot/cpu/s390/stubGenerator_s390.cpp ! src/hotspot/cpu/s390/stubRoutines_s390.cpp ! src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp ! src/hotspot/cpu/s390/templateTable_s390.cpp ! src/hotspot/cpu/s390/upcallLinker_s390.cpp ! src/hotspot/cpu/s390/vm_version_s390.cpp ! src/hotspot/cpu/s390/vmreg_s390.cpp ! src/hotspot/cpu/s390/vtableStubs_s390.cpp ! src/hotspot/cpu/x86/abstractInterpreter_x86.cpp ! src/hotspot/cpu/x86/assembler_x86.cpp ! src/hotspot/cpu/x86/c1_CodeStubs_x86.cpp ! src/hotspot/cpu/x86/c1_FpuStackSim_x86.cpp ! src/hotspot/cpu/x86/c1_FrameMap_x86.cpp ! src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp ! src/hotspot/cpu/x86/c1_LIRGenerator_x86.cpp ! src/hotspot/cpu/x86/c1_LIR_x86.cpp ! src/hotspot/cpu/x86/c1_LinearScan_x86.cpp ! src/hotspot/cpu/x86/c1_MacroAssembler_x86.cpp ! src/hotspot/cpu/x86/c1_Runtime1_x86.cpp ! src/hotspot/cpu/x86/c2_CodeStubs_x86.cpp ! src/hotspot/cpu/x86/c2_MacroAssembler_x86.cpp ! src/hotspot/cpu/x86/c2_init_x86.cpp ! src/hotspot/cpu/x86/c2_intelJccErratum_x86.cpp ! src/hotspot/cpu/x86/c2_stubGenerator_x86_64_string.cpp ! src/hotspot/cpu/x86/codeBuffer_x86.cpp ! src/hotspot/cpu/x86/compiledIC_x86.cpp ! src/hotspot/cpu/x86/compressedKlass_x86.cpp ! src/hotspot/cpu/x86/downcallLinker_x86_32.cpp ! src/hotspot/cpu/x86/downcallLinker_x86_64.cpp ! src/hotspot/cpu/x86/foreignGlobals_x86_32.cpp ! src/hotspot/cpu/x86/foreignGlobals_x86_64.cpp ! src/hotspot/cpu/x86/frame_x86.cpp ! src/hotspot/cpu/x86/gc/g1/g1BarrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/shared/barrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/shared/barrierSetNMethod_x86.cpp ! src/hotspot/cpu/x86/gc/shared/cardTableBarrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/shared/modRefBarrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/shenandoah/c1/shenandoahBarrierSetC1_x86.cpp ! src/hotspot/cpu/x86/gc/shenandoah/shenandoahBarrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/z/zAddress_x86.cpp ! src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/icache_x86.cpp ! src/hotspot/cpu/x86/interp_masm_x86.cpp ! src/hotspot/cpu/x86/interpreterRT_x86_32.cpp ! src/hotspot/cpu/x86/interpreterRT_x86_64.cpp ! src/hotspot/cpu/x86/jniFastGetField_x86_32.cpp ! src/hotspot/cpu/x86/jniFastGetField_x86_64.cpp ! src/hotspot/cpu/x86/jvmciCodeInstaller_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_32_constants.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_32_cos.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_32_exp.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_32_log.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_32_log10.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_32_pow.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_32_sin.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_32_tan.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_md5.cpp ! src/hotspot/cpu/x86/macroAssembler_x86_sha.cpp ! src/hotspot/cpu/x86/methodHandles_x86.cpp ! src/hotspot/cpu/x86/nativeInst_x86.cpp ! src/hotspot/cpu/x86/peephole_x86_64.cpp ! src/hotspot/cpu/x86/rdtsc_x86.cpp ! src/hotspot/cpu/x86/registerMap_x86.cpp ! src/hotspot/cpu/x86/register_x86.cpp ! src/hotspot/cpu/x86/relocInfo_x86.cpp ! src/hotspot/cpu/x86/runtime_x86_32.cpp ! src/hotspot/cpu/x86/runtime_x86_64.cpp ! src/hotspot/cpu/x86/sharedRuntime_x86.cpp ! src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp ! src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_32.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_adler.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_aes.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_arraycopy.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_chacha.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_constants.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_cos.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_exp.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_fmod.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_ghash.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_log.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_poly1305.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_poly_mont.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_pow.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_sha3.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_sin.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_tan.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_tanh.cpp ! src/hotspot/cpu/x86/stubRoutines_x86.cpp ! src/hotspot/cpu/x86/stubRoutines_x86_32.cpp ! src/hotspot/cpu/x86/stubRoutines_x86_64.cpp ! src/hotspot/cpu/x86/templateInterpreterGenerator_x86.cpp ! src/hotspot/cpu/x86/templateInterpreterGenerator_x86_32.cpp ! src/hotspot/cpu/x86/templateInterpreterGenerator_x86_64.cpp ! src/hotspot/cpu/x86/templateTable_x86.cpp ! src/hotspot/cpu/x86/upcallLinker_x86_32.cpp ! src/hotspot/cpu/x86/upcallLinker_x86_64.cpp ! src/hotspot/cpu/x86/vm_version_x86.cpp ! src/hotspot/cpu/x86/vmreg_x86.cpp ! src/hotspot/cpu/x86/vtableStubs_x86_32.cpp ! src/hotspot/cpu/x86/vtableStubs_x86_64.cpp ! src/hotspot/cpu/zero/abstractInterpreter_zero.cpp ! src/hotspot/cpu/zero/assembler_zero.cpp ! src/hotspot/cpu/zero/bytecodeInterpreter_zero.cpp ! src/hotspot/cpu/zero/compiledIC_zero.cpp ! src/hotspot/cpu/zero/disassembler_zero.cpp ! src/hotspot/cpu/zero/downcallLinker_zero.cpp ! src/hotspot/cpu/zero/foreignGlobals_zero.cpp ! src/hotspot/cpu/zero/frame_zero.cpp ! src/hotspot/cpu/zero/gc/shared/barrierSetNMethod_zero.cpp ! src/hotspot/cpu/zero/icache_zero.cpp ! src/hotspot/cpu/zero/interpreterRT_zero.cpp ! src/hotspot/cpu/zero/jniFastGetField_zero.cpp ! src/hotspot/cpu/zero/methodHandles_zero.cpp ! src/hotspot/cpu/zero/nativeInst_zero.cpp ! src/hotspot/cpu/zero/register_zero.cpp ! src/hotspot/cpu/zero/relocInfo_zero.cpp ! src/hotspot/cpu/zero/sharedRuntime_zero.cpp ! src/hotspot/cpu/zero/stack_zero.cpp ! src/hotspot/cpu/zero/stubGenerator_zero.cpp ! src/hotspot/cpu/zero/stubRoutines_zero.cpp ! src/hotspot/cpu/zero/upcallLinker_zero.cpp ! src/hotspot/cpu/zero/vm_version_zero.cpp ! src/hotspot/cpu/zero/vmreg_zero.cpp ! src/hotspot/cpu/zero/vtableStubs_zero.cpp ! src/hotspot/cpu/zero/zeroInterpreter_zero.cpp ! src/hotspot/os/aix/attachListener_aix.cpp ! src/hotspot/os/aix/osThread_aix.cpp ! src/hotspot/os/aix/os_aix.cpp ! src/hotspot/os/aix/os_perf_aix.cpp ! src/hotspot/os/aix/safepointMechanism_aix.cpp ! src/hotspot/os/bsd/decoder_machO.cpp ! src/hotspot/os/bsd/gc/z/zLargePages_bsd.cpp ! src/hotspot/os/bsd/gc/z/zNUMA_bsd.cpp ! src/hotspot/os/bsd/gc/z/zPhysicalMemoryBacking_bsd.cpp ! src/hotspot/os/bsd/memMapPrinter_macosx.cpp ! src/hotspot/os/bsd/osThread_bsd.cpp ! src/hotspot/os/bsd/os_bsd.cpp ! src/hotspot/os/bsd/os_perf_bsd.cpp ! src/hotspot/os/bsd/semaphore_bsd.cpp ! src/hotspot/os/linux/gc/z/zLargePages_linux.cpp ! src/hotspot/os/linux/gc/z/zMountPoint_linux.cpp ! src/hotspot/os/linux/gc/z/zPhysicalMemoryBacking_linux.cpp ! src/hotspot/os/linux/gc/z/zSyscall_linux.cpp ! src/hotspot/os/linux/hugepages.cpp ! src/hotspot/os/linux/mallocInfoDcmd.cpp ! src/hotspot/os/linux/memMapPrinter_linux.cpp ! src/hotspot/os/linux/osThread_linux.cpp ! src/hotspot/os/linux/os_linux.cpp ! src/hotspot/os/linux/os_perf_linux.cpp ! src/hotspot/os/linux/procMapsParser.cpp ! src/hotspot/os/linux/systemMemoryBarrier_linux.cpp ! src/hotspot/os/linux/trimCHeapDCmd.cpp ! src/hotspot/os/linux/waitBarrier_linux.cpp ! src/hotspot/os/posix/attachListener_posix.cpp ! src/hotspot/os/posix/gc/z/zArguments_posix.cpp ! src/hotspot/os/posix/gc/z/zInitialize_posix.cpp ! src/hotspot/os/posix/gc/z/zVirtualMemory_posix.cpp ! src/hotspot/os/posix/jvm_posix.cpp ! src/hotspot/os/posix/perfMemory_posix.cpp ! src/hotspot/os/posix/safefetch_sigjmp.cpp ! src/hotspot/os/posix/safefetch_static_posix.cpp ! src/hotspot/os/posix/semaphore_posix.cpp ! src/hotspot/os/posix/signals_posix.cpp ! src/hotspot/os/posix/suspendResume_posix.cpp ! src/hotspot/os/posix/threadCrashProtection_posix.cpp ! src/hotspot/os/posix/threadCritical_posix.cpp ! src/hotspot/os/posix/vmError_posix.cpp ! src/hotspot/os/windows/attachListener_windows.cpp ! src/hotspot/os/windows/decoder_windows.cpp ! src/hotspot/os/windows/gc/z/zArguments_windows.cpp ! src/hotspot/os/windows/gc/z/zInitialize_windows.cpp ! src/hotspot/os/windows/gc/z/zLargePages_windows.cpp ! src/hotspot/os/windows/gc/z/zMapper_windows.cpp ! src/hotspot/os/windows/gc/z/zNUMA_windows.cpp ! src/hotspot/os/windows/gc/z/zPhysicalMemoryBacking_windows.cpp ! src/hotspot/os/windows/gc/z/zSyscall_windows.cpp ! src/hotspot/os/windows/gc/z/zVirtualMemory_windows.cpp ! src/hotspot/os/windows/iphlp_interface.cpp ! src/hotspot/os/windows/jvm_windows.cpp ! src/hotspot/os/windows/memMapPrinter_windows.cpp ! src/hotspot/os/windows/osThread_windows.cpp ! src/hotspot/os/windows/os_perf_windows.cpp ! src/hotspot/os/windows/os_windows.cpp ! src/hotspot/os/windows/pdh_interface.cpp ! src/hotspot/os/windows/perfMemory_windows.cpp ! src/hotspot/os/windows/semaphore_windows.cpp ! src/hotspot/os/windows/sharedRuntimeRem.cpp ! src/hotspot/os/windows/symbolengine.cpp ! src/hotspot/os/windows/systemMemoryBarrier_windows.cpp ! src/hotspot/os/windows/threadCrashProtection_windows.cpp ! src/hotspot/os/windows/threadCritical_windows.cpp ! src/hotspot/os/windows/threadLocalStorage_windows.cpp ! src/hotspot/os/windows/vmError_windows.cpp ! src/hotspot/os/windows/windbghelp.cpp ! src/hotspot/os_cpu/aix_ppc/javaThread_aix_ppc.cpp ! src/hotspot/os_cpu/aix_ppc/os_aix_ppc.cpp ! src/hotspot/os_cpu/bsd_aarch64/javaThread_bsd_aarch64.cpp ! src/hotspot/os_cpu/bsd_aarch64/os_bsd_aarch64.cpp ! src/hotspot/os_cpu/bsd_aarch64/vm_version_bsd_aarch64.cpp ! src/hotspot/os_cpu/bsd_x86/assembler_bsd_x86.cpp ! src/hotspot/os_cpu/bsd_x86/javaThread_bsd_x86.cpp ! src/hotspot/os_cpu/bsd_x86/os_bsd_x86.cpp ! src/hotspot/os_cpu/bsd_x86/vm_version_bsd_x86.cpp ! src/hotspot/os_cpu/bsd_zero/javaThread_bsd_zero.cpp ! src/hotspot/os_cpu/bsd_zero/os_bsd_zero.cpp ! src/hotspot/os_cpu/bsd_zero/vm_version_bsd_zero.cpp ! src/hotspot/os_cpu/linux_aarch64/javaThread_linux_aarch64.cpp ! src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.cpp ! src/hotspot/os_cpu/linux_aarch64/vm_version_linux_aarch64.cpp ! src/hotspot/os_cpu/linux_arm/javaThread_linux_arm.cpp ! src/hotspot/os_cpu/linux_arm/macroAssembler_linux_arm_32.cpp ! src/hotspot/os_cpu/linux_arm/os_linux_arm.cpp ! src/hotspot/os_cpu/linux_arm/vm_version_linux_arm_32.cpp ! src/hotspot/os_cpu/linux_ppc/javaThread_linux_ppc.cpp ! src/hotspot/os_cpu/linux_ppc/os_linux_ppc.cpp ! src/hotspot/os_cpu/linux_riscv/javaThread_linux_riscv.cpp ! src/hotspot/os_cpu/linux_riscv/os_linux_riscv.cpp ! src/hotspot/os_cpu/linux_riscv/riscv_flush_icache.cpp ! src/hotspot/os_cpu/linux_riscv/riscv_hwprobe.cpp ! src/hotspot/os_cpu/linux_riscv/vm_version_linux_riscv.cpp ! src/hotspot/os_cpu/linux_s390/javaThread_linux_s390.cpp ! src/hotspot/os_cpu/linux_s390/os_linux_s390.cpp ! src/hotspot/os_cpu/linux_x86/assembler_linux_x86.cpp ! src/hotspot/os_cpu/linux_x86/javaThread_linux_x86.cpp ! src/hotspot/os_cpu/linux_x86/os_linux_x86.cpp ! src/hotspot/os_cpu/linux_x86/vm_version_linux_x86.cpp ! src/hotspot/os_cpu/linux_zero/javaThread_linux_zero.cpp ! src/hotspot/os_cpu/linux_zero/os_linux_zero.cpp ! src/hotspot/os_cpu/linux_zero/vm_version_linux_zero.cpp ! src/hotspot/os_cpu/windows_aarch64/assembler_windows_aarch64.cpp ! src/hotspot/os_cpu/windows_aarch64/javaThread_windows_aarch64.cpp ! src/hotspot/os_cpu/windows_aarch64/os_windows_aarch64.cpp ! src/hotspot/os_cpu/windows_aarch64/vm_version_windows_aarch64.cpp ! src/hotspot/os_cpu/windows_x86/assembler_windows_x86.cpp ! src/hotspot/os_cpu/windows_x86/javaThread_windows_x86.cpp ! src/hotspot/os_cpu/windows_x86/os_windows_x86.cpp ! src/hotspot/os_cpu/windows_x86/vm_version_windows_x86.cpp ! src/hotspot/share/adlc/main.cpp ! src/hotspot/share/asm/assembler.cpp ! src/hotspot/share/asm/codeBuffer.cpp ! src/hotspot/share/asm/register.cpp ! src/hotspot/share/c1/c1_CFGPrinter.cpp ! src/hotspot/share/c1/c1_Canonicalizer.cpp ! src/hotspot/share/c1/c1_Compilation.cpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_FrameMap.cpp ! src/hotspot/share/c1/c1_GraphBuilder.cpp ! src/hotspot/share/c1/c1_IR.cpp ! src/hotspot/share/c1/c1_Instruction.cpp ! src/hotspot/share/c1/c1_InstructionPrinter.cpp ! src/hotspot/share/c1/c1_LIR.cpp ! src/hotspot/share/c1/c1_LIRAssembler.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LinearScan.cpp ! src/hotspot/share/c1/c1_Optimizer.cpp ! src/hotspot/share/c1/c1_RangeCheckElimination.cpp ! src/hotspot/share/c1/c1_Runtime1.cpp ! src/hotspot/share/c1/c1_ValueMap.cpp ! src/hotspot/share/c1/c1_ValueStack.cpp ! src/hotspot/share/c1/c1_ValueType.cpp ! src/hotspot/share/cds/aotArtifactFinder.cpp ! src/hotspot/share/cds/aotClassInitializer.cpp ! src/hotspot/share/cds/aotClassLinker.cpp ! src/hotspot/share/cds/aotConstantPoolResolver.cpp ! src/hotspot/share/cds/aotLinkedClassBulkLoader.cpp ! src/hotspot/share/cds/aotLinkedClassTable.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveHeapLoader.cpp ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/archiveUtils.cpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConstants.cpp ! src/hotspot/share/cds/cdsEnumKlass.cpp ! src/hotspot/share/cds/cdsHeapVerifier.cpp ! src/hotspot/share/cds/cdsProtectionDomain.cpp ! src/hotspot/share/cds/classListParser.cpp ! src/hotspot/share/cds/classListWriter.cpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dumpAllocStats.cpp ! src/hotspot/share/cds/dumpTimeClassInfo.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/lambdaFormInvokers.cpp ! src/hotspot/share/cds/lambdaProxyClassDictionary.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/regeneratedClasses.cpp ! src/hotspot/share/cds/runTimeClassInfo.cpp ! src/hotspot/share/cds/unregisteredClasses.cpp ! src/hotspot/share/ci/bcEscapeAnalyzer.cpp ! src/hotspot/share/ci/ciArray.cpp ! src/hotspot/share/ci/ciArrayKlass.cpp ! src/hotspot/share/ci/ciBaseObject.cpp ! src/hotspot/share/ci/ciCallSite.cpp ! src/hotspot/share/ci/ciConstant.cpp ! src/hotspot/share/ci/ciConstantPoolCache.cpp ! src/hotspot/share/ci/ciEnv.cpp ! src/hotspot/share/ci/ciExceptionHandler.cpp ! src/hotspot/share/ci/ciField.cpp ! src/hotspot/share/ci/ciFlags.cpp ! src/hotspot/share/ci/ciInstance.cpp ! src/hotspot/share/ci/ciInstanceKlass.cpp ! src/hotspot/share/ci/ciKlass.cpp ! src/hotspot/share/ci/ciMemberName.cpp ! src/hotspot/share/ci/ciMetadata.cpp ! src/hotspot/share/ci/ciMethod.cpp ! src/hotspot/share/ci/ciMethodBlocks.cpp ! src/hotspot/share/ci/ciMethodData.cpp ! src/hotspot/share/ci/ciMethodHandle.cpp ! src/hotspot/share/ci/ciMethodType.cpp ! src/hotspot/share/ci/ciNullObject.cpp ! src/hotspot/share/ci/ciObjArray.cpp ! src/hotspot/share/ci/ciObjArrayKlass.cpp ! src/hotspot/share/ci/ciObject.cpp ! src/hotspot/share/ci/ciObjectFactory.cpp ! src/hotspot/share/ci/ciReplay.cpp ! src/hotspot/share/ci/ciSignature.cpp ! src/hotspot/share/ci/ciStreams.cpp ! src/hotspot/share/ci/ciSymbol.cpp ! src/hotspot/share/ci/ciType.cpp ! src/hotspot/share/ci/ciTypeArray.cpp ! src/hotspot/share/ci/ciTypeArrayKlass.cpp ! src/hotspot/share/ci/ciTypeFlow.cpp ! src/hotspot/share/ci/ciUtilities.cpp ! src/hotspot/share/classfile/altHashing.cpp ! src/hotspot/share/classfile/bytecodeAssembler.cpp ! src/hotspot/share/classfile/classFileError.cpp ! src/hotspot/share/classfile/classFileParser.cpp ! src/hotspot/share/classfile/classFileStream.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoaderData.cpp ! src/hotspot/share/classfile/classLoaderDataGraph.cpp ! src/hotspot/share/classfile/classLoaderDataShared.cpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/classLoaderHierarchyDCmd.cpp ! src/hotspot/share/classfile/classLoaderStats.cpp ! src/hotspot/share/classfile/classPrinter.cpp ! src/hotspot/share/classfile/compactHashtable.cpp ! src/hotspot/share/classfile/defaultMethods.cpp ! src/hotspot/share/classfile/dictionary.cpp ! src/hotspot/share/classfile/fieldLayoutBuilder.cpp ! src/hotspot/share/classfile/javaAssertions.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/klassFactory.cpp ! src/hotspot/share/classfile/loaderConstraints.cpp ! src/hotspot/share/classfile/metadataOnStackMark.cpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/modules.cpp ! src/hotspot/share/classfile/packageEntry.cpp ! src/hotspot/share/classfile/placeholders.cpp ! src/hotspot/share/classfile/resolutionErrors.cpp ! src/hotspot/share/classfile/stackMapFrame.cpp ! src/hotspot/share/classfile/stackMapTable.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/symbolTable.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/verificationType.cpp ! src/hotspot/share/classfile/verifier.cpp ! src/hotspot/share/classfile/vmClasses.cpp ! src/hotspot/share/classfile/vmIntrinsics.cpp ! src/hotspot/share/classfile/vmSymbols.cpp ! src/hotspot/share/code/codeBehaviours.cpp ! src/hotspot/share/code/codeBlob.cpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeHeapState.cpp ! src/hotspot/share/code/compiledIC.cpp ! src/hotspot/share/code/compressedStream.cpp ! src/hotspot/share/code/debugInfo.cpp ! src/hotspot/share/code/debugInfoRec.cpp ! src/hotspot/share/code/dependencies.cpp ! src/hotspot/share/code/dependencyContext.cpp ! src/hotspot/share/code/exceptionHandlerTable.cpp ! src/hotspot/share/code/location.cpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/oopRecorder.cpp ! src/hotspot/share/code/pcDesc.cpp ! src/hotspot/share/code/relocInfo.cpp ! src/hotspot/share/code/scopeDesc.cpp ! src/hotspot/share/code/stubs.cpp ! src/hotspot/share/code/vmreg.cpp ! src/hotspot/share/code/vtableStubs.cpp ! src/hotspot/share/compiler/abstractCompiler.cpp ! src/hotspot/share/compiler/abstractDisassembler.cpp ! src/hotspot/share/compiler/cHeapStringHolder.cpp ! src/hotspot/share/compiler/compilationFailureInfo.cpp ! src/hotspot/share/compiler/compilationLog.cpp ! src/hotspot/share/compiler/compilationMemoryStatistic.cpp ! src/hotspot/share/compiler/compilationPolicy.cpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/compiler/compileLog.cpp ! src/hotspot/share/compiler/compileTask.cpp ! src/hotspot/share/compiler/compilerDefinitions.cpp ! src/hotspot/share/compiler/compilerDirectives.cpp ! src/hotspot/share/compiler/compilerEvent.cpp ! src/hotspot/share/compiler/compilerOracle.cpp ! src/hotspot/share/compiler/compilerThread.cpp ! src/hotspot/share/compiler/directivesParser.cpp ! src/hotspot/share/compiler/disassembler.cpp ! src/hotspot/share/compiler/methodLiveness.cpp ! src/hotspot/share/compiler/methodMatcher.cpp ! src/hotspot/share/compiler/oopMap.cpp ! src/hotspot/share/gc/epsilon/epsilonArguments.cpp ! src/hotspot/share/gc/epsilon/epsilonBarrierSet.cpp ! src/hotspot/share/gc/epsilon/epsilonHeap.cpp ! src/hotspot/share/gc/epsilon/epsilonInitLogger.cpp ! src/hotspot/share/gc/epsilon/epsilonMemoryPool.cpp ! src/hotspot/share/gc/epsilon/epsilonMonitoringSupport.cpp ! src/hotspot/share/gc/g1/c1/g1BarrierSetC1.cpp ! src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp ! src/hotspot/share/gc/g1/g1AllocRegion.cpp ! src/hotspot/share/gc/g1/g1Allocator.cpp ! src/hotspot/share/gc/g1/g1Analytics.cpp ! src/hotspot/share/gc/g1/g1Arguments.cpp ! src/hotspot/share/gc/g1/g1BarrierSet.cpp ! src/hotspot/share/gc/g1/g1BarrierSetRuntime.cpp ! src/hotspot/share/gc/g1/g1BatchedTask.cpp ! src/hotspot/share/gc/g1/g1BiasedArray.cpp ! src/hotspot/share/gc/g1/g1BlockOffsetTable.cpp ! src/hotspot/share/gc/g1/g1CardSet.cpp ! src/hotspot/share/gc/g1/g1CardSetContainers.cpp ! src/hotspot/share/gc/g1/g1CardSetMemory.cpp ! src/hotspot/share/gc/g1/g1CardTable.cpp ! src/hotspot/share/gc/g1/g1CodeRootSet.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1CollectionSet.cpp ! src/hotspot/share/gc/g1/g1CollectionSetCandidates.cpp ! src/hotspot/share/gc/g1/g1CollectionSetChooser.cpp ! src/hotspot/share/gc/g1/g1CollectorState.cpp ! src/hotspot/share/gc/g1/g1CommittedRegionMap.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMarkBitMap.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMarkObjArrayProcessor.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMarkThread.cpp ! src/hotspot/share/gc/g1/g1ConcurrentRebuildAndScrub.cpp ! src/hotspot/share/gc/g1/g1ConcurrentRefine.cpp ! src/hotspot/share/gc/g1/g1ConcurrentRefineStats.cpp ! src/hotspot/share/gc/g1/g1ConcurrentRefineThread.cpp ! src/hotspot/share/gc/g1/g1ConcurrentRefineThreadsNeeded.cpp ! src/hotspot/share/gc/g1/g1DirtyCardQueue.cpp ! src/hotspot/share/gc/g1/g1EvacFailureRegions.cpp ! src/hotspot/share/gc/g1/g1EvacStats.cpp ! src/hotspot/share/gc/g1/g1FreeIdSet.cpp ! src/hotspot/share/gc/g1/g1FromCardCache.cpp ! src/hotspot/share/gc/g1/g1FullCollector.cpp ! src/hotspot/share/gc/g1/g1FullGCAdjustTask.cpp ! src/hotspot/share/gc/g1/g1FullGCCompactTask.cpp ! src/hotspot/share/gc/g1/g1FullGCCompactionPoint.cpp ! src/hotspot/share/gc/g1/g1FullGCMarkTask.cpp ! src/hotspot/share/gc/g1/g1FullGCMarker.cpp ! src/hotspot/share/gc/g1/g1FullGCOopClosures.cpp ! src/hotspot/share/gc/g1/g1FullGCPrepareTask.cpp ! src/hotspot/share/gc/g1/g1FullGCResetMetadataTask.cpp ! src/hotspot/share/gc/g1/g1FullGCScope.cpp ! src/hotspot/share/gc/g1/g1FullGCTask.cpp ! src/hotspot/share/gc/g1/g1GCCounters.cpp ! src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp ! src/hotspot/share/gc/g1/g1HeapRegion.cpp ! src/hotspot/share/gc/g1/g1HeapRegionEventSender.cpp ! src/hotspot/share/gc/g1/g1HeapRegionManager.cpp ! src/hotspot/share/gc/g1/g1HeapRegionRemSet.cpp ! src/hotspot/share/gc/g1/g1HeapRegionSet.cpp ! src/hotspot/share/gc/g1/g1HeapRegionTracer.cpp ! src/hotspot/share/gc/g1/g1HeapRegionType.cpp ! src/hotspot/share/gc/g1/g1HeapSizingPolicy.cpp ! src/hotspot/share/gc/g1/g1HeapTransition.cpp ! src/hotspot/share/gc/g1/g1HeapVerifier.cpp ! src/hotspot/share/gc/g1/g1IHOPControl.cpp ! src/hotspot/share/gc/g1/g1InitLogger.cpp ! src/hotspot/share/gc/g1/g1MMUTracker.cpp ! src/hotspot/share/gc/g1/g1MemoryPool.cpp ! src/hotspot/share/gc/g1/g1MonitoringSupport.cpp ! src/hotspot/share/gc/g1/g1MonotonicArena.cpp ! src/hotspot/share/gc/g1/g1MonotonicArenaFreeMemoryTask.cpp ! src/hotspot/share/gc/g1/g1MonotonicArenaFreePool.cpp ! src/hotspot/share/gc/g1/g1NMethodClosure.cpp ! src/hotspot/share/gc/g1/g1NUMA.cpp ! src/hotspot/share/gc/g1/g1NUMAStats.cpp ! src/hotspot/share/gc/g1/g1OldGenAllocationTracker.cpp ! src/hotspot/share/gc/g1/g1OopClosures.cpp ! src/hotspot/share/gc/g1/g1OopStarChunkedList.cpp ! src/hotspot/share/gc/g1/g1PageBasedVirtualSpace.cpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.cpp ! src/hotspot/share/gc/g1/g1ParallelCleaning.cpp ! src/hotspot/share/gc/g1/g1PeriodicGCTask.cpp ! src/hotspot/share/gc/g1/g1Policy.cpp ! src/hotspot/share/gc/g1/g1RedirtyCardsQueue.cpp ! src/hotspot/share/gc/g1/g1RegionMarkStatsCache.cpp ! src/hotspot/share/gc/g1/g1RegionToSpaceMapper.cpp ! src/hotspot/share/gc/g1/g1RegionsOnNodes.cpp ! src/hotspot/share/gc/g1/g1RemSet.cpp ! src/hotspot/share/gc/g1/g1RemSetSummary.cpp ! src/hotspot/share/gc/g1/g1RemSetTrackingPolicy.cpp ! src/hotspot/share/gc/g1/g1RootClosures.cpp ! src/hotspot/share/gc/g1/g1RootProcessor.cpp ! src/hotspot/share/gc/g1/g1SATBMarkQueueSet.cpp ! src/hotspot/share/gc/g1/g1ServiceThread.cpp ! src/hotspot/share/gc/g1/g1StringDedup.cpp ! src/hotspot/share/gc/g1/g1SurvRateGroup.cpp ! src/hotspot/share/gc/g1/g1SurvivorRegions.cpp ! src/hotspot/share/gc/g1/g1Trace.cpp ! src/hotspot/share/gc/g1/g1UncommitRegionTask.cpp ! src/hotspot/share/gc/g1/g1VMOperations.cpp ! src/hotspot/share/gc/g1/g1YoungCollector.cpp ! src/hotspot/share/gc/g1/g1YoungGCAllocationFailureInjector.cpp ! src/hotspot/share/gc/g1/g1YoungGCPostEvacuateTasks.cpp ! src/hotspot/share/gc/g1/g1YoungGCPreEvacuateTasks.cpp ! src/hotspot/share/gc/g1/g1YoungGenSizer.cpp ! src/hotspot/share/gc/g1/jvmFlagConstraintsG1.cpp ! src/hotspot/share/gc/parallel/gcAdaptivePolicyCounters.cpp ! src/hotspot/share/gc/parallel/jvmFlagConstraintsParallel.cpp ! src/hotspot/share/gc/parallel/mutableNUMASpace.cpp ! src/hotspot/share/gc/parallel/mutableSpace.cpp ! src/hotspot/share/gc/parallel/objectStartArray.cpp ! src/hotspot/share/gc/parallel/parMarkBitMap.cpp ! src/hotspot/share/gc/parallel/parallelArguments.cpp ! src/hotspot/share/gc/parallel/parallelInitLogger.cpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp ! src/hotspot/share/gc/parallel/psAdaptiveSizePolicy.cpp ! src/hotspot/share/gc/parallel/psCardTable.cpp ! src/hotspot/share/gc/parallel/psCompactionManager.cpp ! src/hotspot/share/gc/parallel/psGCAdaptivePolicyCounters.cpp ! src/hotspot/share/gc/parallel/psGenerationCounters.cpp ! src/hotspot/share/gc/parallel/psMemoryPool.cpp ! src/hotspot/share/gc/parallel/psOldGen.cpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psPromotionLAB.cpp ! src/hotspot/share/gc/parallel/psPromotionManager.cpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/parallel/psVMOperations.cpp ! src/hotspot/share/gc/parallel/psVirtualspace.cpp ! src/hotspot/share/gc/parallel/psYoungGen.cpp ! src/hotspot/share/gc/parallel/spaceCounters.cpp ! src/hotspot/share/gc/serial/cSpaceCounters.cpp ! src/hotspot/share/gc/serial/cardTableRS.cpp ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/generation.cpp ! src/hotspot/share/gc/serial/serialArguments.cpp ! src/hotspot/share/gc/serial/serialBlockOffsetTable.cpp ! src/hotspot/share/gc/serial/serialFullGC.cpp ! src/hotspot/share/gc/serial/serialHeap.cpp ! src/hotspot/share/gc/serial/serialMemoryPools.cpp ! src/hotspot/share/gc/serial/serialStringDedup.cpp ! src/hotspot/share/gc/serial/serialVMOperations.cpp ! src/hotspot/share/gc/serial/tenuredGeneration.cpp ! src/hotspot/share/gc/shared/accessBarrierSupport.cpp ! src/hotspot/share/gc/shared/adaptiveSizePolicy.cpp ! src/hotspot/share/gc/shared/ageTable.cpp ! src/hotspot/share/gc/shared/ageTableTracer.cpp ! src/hotspot/share/gc/shared/allocTracer.cpp ! src/hotspot/share/gc/shared/barrierSet.cpp ! src/hotspot/share/gc/shared/barrierSetNMethod.cpp ! src/hotspot/share/gc/shared/barrierSetStackChunk.cpp ! src/hotspot/share/gc/shared/bufferNode.cpp ! src/hotspot/share/gc/shared/bufferNodeList.cpp ! src/hotspot/share/gc/shared/c1/barrierSetC1.cpp ! src/hotspot/share/gc/shared/c1/cardTableBarrierSetC1.cpp ! src/hotspot/share/gc/shared/c1/modRefBarrierSetC1.cpp ! src/hotspot/share/gc/shared/c2/barrierSetC2.cpp ! src/hotspot/share/gc/shared/c2/cardTableBarrierSetC2.cpp ! src/hotspot/share/gc/shared/c2/modRefBarrierSetC2.cpp ! src/hotspot/share/gc/shared/cardTable.cpp ! src/hotspot/share/gc/shared/cardTableBarrierSet.cpp ! src/hotspot/share/gc/shared/classUnloadingContext.cpp ! src/hotspot/share/gc/shared/collectedHeap.cpp ! src/hotspot/share/gc/shared/collectorCounters.cpp ! src/hotspot/share/gc/shared/concurrentGCBreakpoints.cpp ! src/hotspot/share/gc/shared/concurrentGCThread.cpp ! src/hotspot/share/gc/shared/freeListAllocator.cpp ! src/hotspot/share/gc/shared/fullGCForwarding.cpp ! src/hotspot/share/gc/shared/gcArguments.cpp ! src/hotspot/share/gc/shared/gcBehaviours.cpp ! src/hotspot/share/gc/shared/gcCause.cpp ! src/hotspot/share/gc/shared/gcConfig.cpp ! src/hotspot/share/gc/shared/gcConfiguration.cpp ! src/hotspot/share/gc/shared/gcId.cpp ! src/hotspot/share/gc/shared/gcInitLogger.cpp ! src/hotspot/share/gc/shared/gcLocker.cpp ! src/hotspot/share/gc/shared/gcLogPrecious.cpp ! src/hotspot/share/gc/shared/gcOverheadChecker.cpp ! src/hotspot/share/gc/shared/gcPolicyCounters.cpp ! src/hotspot/share/gc/shared/gcTimer.cpp ! src/hotspot/share/gc/shared/gcTrace.cpp ! src/hotspot/share/gc/shared/gcTraceSend.cpp ! src/hotspot/share/gc/shared/gcTraceTime.cpp ! src/hotspot/share/gc/shared/gcUtil.cpp ! src/hotspot/share/gc/shared/gcVMOperations.cpp ! src/hotspot/share/gc/shared/genArguments.cpp ! src/hotspot/share/gc/shared/generationCounters.cpp ! src/hotspot/share/gc/shared/hSpaceCounters.cpp ! src/hotspot/share/gc/shared/isGCActiveMark.cpp ! src/hotspot/share/gc/shared/jvmFlagConstraintsGC.cpp ! src/hotspot/share/gc/shared/locationPrinter.cpp ! src/hotspot/share/gc/shared/markBitMap.cpp ! src/hotspot/share/gc/shared/memAllocator.cpp ! src/hotspot/share/gc/shared/objectCountEventSender.cpp ! src/hotspot/share/gc/shared/oopStorage.cpp ! src/hotspot/share/gc/shared/oopStorageSet.cpp ! src/hotspot/share/gc/shared/parallelCleaning.cpp ! src/hotspot/share/gc/shared/partialArraySplitter.cpp ! src/hotspot/share/gc/shared/partialArrayState.cpp ! src/hotspot/share/gc/shared/partialArrayTaskStats.cpp ! src/hotspot/share/gc/shared/partialArrayTaskStepper.cpp ! src/hotspot/share/gc/shared/plab.cpp ! src/hotspot/share/gc/shared/preservedMarks.cpp ! src/hotspot/share/gc/shared/pretouchTask.cpp ! src/hotspot/share/gc/shared/ptrQueue.cpp ! src/hotspot/share/gc/shared/referencePolicy.cpp ! src/hotspot/share/gc/shared/referenceProcessor.cpp ! src/hotspot/share/gc/shared/referenceProcessorPhaseTimes.cpp ! src/hotspot/share/gc/shared/satbMarkQueue.cpp ! src/hotspot/share/gc/shared/scavengableNMethods.cpp ! src/hotspot/share/gc/shared/space.cpp ! src/hotspot/share/gc/shared/spaceDecorator.cpp ! src/hotspot/share/gc/shared/stringdedup/stringDedup.cpp ! src/hotspot/share/gc/shared/stringdedup/stringDedupConfig.cpp ! src/hotspot/share/gc/shared/stringdedup/stringDedupProcessor.cpp ! src/hotspot/share/gc/shared/stringdedup/stringDedupStat.cpp ! src/hotspot/share/gc/shared/stringdedup/stringDedupStorageUse.cpp ! src/hotspot/share/gc/shared/stringdedup/stringDedupTable.cpp ! src/hotspot/share/gc/shared/stringdedup/stringDedupThread.cpp ! src/hotspot/share/gc/shared/strongRootsScope.cpp ! src/hotspot/share/gc/shared/suspendibleThreadSet.cpp ! src/hotspot/share/gc/shared/taskTerminator.cpp ! src/hotspot/share/gc/shared/taskqueue.cpp ! src/hotspot/share/gc/shared/threadLocalAllocBuffer.cpp ! src/hotspot/share/gc/shared/weakProcessor.cpp ! src/hotspot/share/gc/shared/weakProcessorTimes.cpp ! src/hotspot/share/gc/shared/workerDataArray.cpp ! src/hotspot/share/gc/shared/workerPolicy.cpp ! src/hotspot/share/gc/shared/workerThread.cpp ! src/hotspot/share/gc/shared/workerUtils.cpp ! src/hotspot/share/gc/shenandoah/c1/shenandoahBarrierSetC1.cpp ! src/hotspot/share/gc/shenandoah/c2/shenandoahBarrierSetC2.cpp ! src/hotspot/share/gc/shenandoah/c2/shenandoahSupport.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahAdaptiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahAggressiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahCompactHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahGenerationalHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahGlobalHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahOldHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahPassiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahStaticHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahYoungHeuristics.cpp ! src/hotspot/share/gc/shenandoah/mode/shenandoahGenerationalMode.cpp ! src/hotspot/share/gc/shenandoah/mode/shenandoahMode.cpp ! src/hotspot/share/gc/shenandoah/mode/shenandoahPassiveMode.cpp ! src/hotspot/share/gc/shenandoah/mode/shenandoahSATBMode.cpp ! src/hotspot/share/gc/shenandoah/shenandoahAgeCensus.cpp ! src/hotspot/share/gc/shenandoah/shenandoahArguments.cpp ! src/hotspot/share/gc/shenandoah/shenandoahAsserts.cpp ! src/hotspot/share/gc/shenandoah/shenandoahBarrierSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahBarrierSetNMethod.cpp ! src/hotspot/share/gc/shenandoah/shenandoahBarrierSetStackChunk.cpp ! src/hotspot/share/gc/shenandoah/shenandoahBreakpoint.cpp ! src/hotspot/share/gc/shenandoah/shenandoahCardStats.cpp ! src/hotspot/share/gc/shenandoah/shenandoahCardTable.cpp ! src/hotspot/share/gc/shenandoah/shenandoahCodeRoots.cpp ! src/hotspot/share/gc/shenandoah/shenandoahCollectionSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahCollectorPolicy.cpp ! src/hotspot/share/gc/shenandoah/shenandoahConcurrentGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.cpp ! src/hotspot/share/gc/shenandoah/shenandoahControlThread.cpp ! src/hotspot/share/gc/shenandoah/shenandoahController.cpp ! src/hotspot/share/gc/shenandoah/shenandoahDegeneratedGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahEvacOOMHandler.cpp ! src/hotspot/share/gc/shenandoah/shenandoahEvacTracker.cpp ! src/hotspot/share/gc/shenandoah/shenandoahFreeSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahFullGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGeneration.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationSizer.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationalControlThread.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationalEvacuationTask.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationalFullGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationalHeap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGlobalGeneration.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeapRegionClosures.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeapRegionCounters.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeapRegionSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahInitLogger.cpp ! src/hotspot/share/gc/shenandoah/shenandoahJfrSupport.cpp ! src/hotspot/share/gc/shenandoah/shenandoahLock.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMark.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMarkBitMap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMarkingContext.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMemoryPool.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMetrics.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMmuTracker.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMonitoringSupport.cpp ! src/hotspot/share/gc/shenandoah/shenandoahNMethod.cpp ! src/hotspot/share/gc/shenandoah/shenandoahNumberSeq.cpp ! src/hotspot/share/gc/shenandoah/shenandoahOldGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahOldGeneration.cpp ! src/hotspot/share/gc/shenandoah/shenandoahPacer.cpp ! src/hotspot/share/gc/shenandoah/shenandoahParallelCleaning.cpp ! src/hotspot/share/gc/shenandoah/shenandoahPhaseTimings.cpp ! src/hotspot/share/gc/shenandoah/shenandoahReferenceProcessor.cpp ! src/hotspot/share/gc/shenandoah/shenandoahRegulatorThread.cpp ! src/hotspot/share/gc/shenandoah/shenandoahRootProcessor.cpp ! src/hotspot/share/gc/shenandoah/shenandoahRootVerifier.cpp ! src/hotspot/share/gc/shenandoah/shenandoahRuntime.cpp ! src/hotspot/share/gc/shenandoah/shenandoahSATBMarkQueueSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahSTWMark.cpp ! src/hotspot/share/gc/shenandoah/shenandoahScanRemembered.cpp ! src/hotspot/share/gc/shenandoah/shenandoahSimpleBitMap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahStackWatermark.cpp ! src/hotspot/share/gc/shenandoah/shenandoahTaskqueue.cpp ! src/hotspot/share/gc/shenandoah/shenandoahThreadLocalData.cpp ! src/hotspot/share/gc/shenandoah/shenandoahTrace.cpp ! src/hotspot/share/gc/shenandoah/shenandoahUncommitThread.cpp ! src/hotspot/share/gc/shenandoah/shenandoahUnload.cpp ! src/hotspot/share/gc/shenandoah/shenandoahUtils.cpp ! src/hotspot/share/gc/shenandoah/shenandoahVMOperations.cpp ! src/hotspot/share/gc/shenandoah/shenandoahVerifier.cpp ! src/hotspot/share/gc/shenandoah/shenandoahWorkGroup.cpp ! src/hotspot/share/gc/shenandoah/shenandoahWorkerPolicy.cpp ! src/hotspot/share/gc/shenandoah/shenandoahYoungGeneration.cpp ! src/hotspot/share/gc/z/c1/zBarrierSetC1.cpp ! src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp ! src/hotspot/share/gc/z/vmStructs_z.cpp ! src/hotspot/share/gc/z/zAbort.cpp ! src/hotspot/share/gc/z/zAddress.cpp ! src/hotspot/share/gc/z/zAddressSpaceLimit.cpp ! src/hotspot/share/gc/z/zAllocator.cpp ! src/hotspot/share/gc/z/zArguments.cpp ! src/hotspot/share/gc/z/zBarrier.cpp ! src/hotspot/share/gc/z/zBarrierSet.cpp ! src/hotspot/share/gc/z/zBarrierSetAssembler.cpp ! src/hotspot/share/gc/z/zBarrierSetNMethod.cpp ! src/hotspot/share/gc/z/zBarrierSetRuntime.cpp ! src/hotspot/share/gc/z/zBarrierSetStackChunk.cpp ! src/hotspot/share/gc/z/zBreakpoint.cpp ! src/hotspot/share/gc/z/zCPU.cpp ! src/hotspot/share/gc/z/zCollectedHeap.cpp ! src/hotspot/share/gc/z/zContinuation.cpp ! src/hotspot/share/gc/z/zDirector.cpp ! src/hotspot/share/gc/z/zDriver.cpp ! src/hotspot/share/gc/z/zDriverPort.cpp ! src/hotspot/share/gc/z/zErrno.cpp ! src/hotspot/share/gc/z/zForwarding.cpp ! src/hotspot/share/gc/z/zForwardingAllocator.cpp ! src/hotspot/share/gc/z/zGCIdPrinter.cpp ! src/hotspot/share/gc/z/zGeneration.cpp ! src/hotspot/share/gc/z/zGlobals.cpp ! src/hotspot/share/gc/z/zHeap.cpp ! src/hotspot/share/gc/z/zHeapIterator.cpp ! src/hotspot/share/gc/z/zHeuristics.cpp ! src/hotspot/share/gc/z/zInitialize.cpp ! src/hotspot/share/gc/z/zJNICritical.cpp ! src/hotspot/share/gc/z/zLargePages.cpp ! src/hotspot/share/gc/z/zLiveMap.cpp ! src/hotspot/share/gc/z/zMark.cpp ! src/hotspot/share/gc/z/zMarkCache.cpp ! src/hotspot/share/gc/z/zMarkStack.cpp ! src/hotspot/share/gc/z/zMarkStackAllocator.cpp ! src/hotspot/share/gc/z/zMemory.cpp ! src/hotspot/share/gc/z/zMetronome.cpp ! src/hotspot/share/gc/z/zNMT.cpp ! src/hotspot/share/gc/z/zNMethod.cpp ! src/hotspot/share/gc/z/zNMethodData.cpp ! src/hotspot/share/gc/z/zNMethodTable.cpp ! src/hotspot/share/gc/z/zNMethodTableIteration.cpp ! src/hotspot/share/gc/z/zNUMA.cpp ! src/hotspot/share/gc/z/zObjArrayAllocator.cpp ! src/hotspot/share/gc/z/zObjectAllocator.cpp ! src/hotspot/share/gc/z/zPage.cpp ! src/hotspot/share/gc/z/zPageAllocator.cpp ! src/hotspot/share/gc/z/zPageCache.cpp ! src/hotspot/share/gc/z/zPageTable.cpp ! src/hotspot/share/gc/z/zPhysicalMemory.cpp ! src/hotspot/share/gc/z/zReferenceProcessor.cpp ! src/hotspot/share/gc/z/zRelocate.cpp ! src/hotspot/share/gc/z/zRelocationSet.cpp ! src/hotspot/share/gc/z/zRelocationSetSelector.cpp ! src/hotspot/share/gc/z/zRemembered.cpp ! src/hotspot/share/gc/z/zRememberedSet.cpp ! src/hotspot/share/gc/z/zResurrection.cpp ! src/hotspot/share/gc/z/zRootsIterator.cpp ! src/hotspot/share/gc/z/zRuntimeWorkers.cpp ! src/hotspot/share/gc/z/zServiceability.cpp ! src/hotspot/share/gc/z/zStackWatermark.cpp ! src/hotspot/share/gc/z/zStat.cpp ! src/hotspot/share/gc/z/zStoreBarrierBuffer.cpp ! src/hotspot/share/gc/z/zTask.cpp ! src/hotspot/share/gc/z/zThread.cpp ! src/hotspot/share/gc/z/zThreadLocalAllocBuffer.cpp ! src/hotspot/share/gc/z/zTracer.cpp ! src/hotspot/share/gc/z/zUncoloredRoot.cpp ! src/hotspot/share/gc/z/zUncommitter.cpp ! src/hotspot/share/gc/z/zUnload.cpp ! src/hotspot/share/gc/z/zUnmapper.cpp ! src/hotspot/share/gc/z/zUtils.cpp ! src/hotspot/share/gc/z/zVerify.cpp ! src/hotspot/share/gc/z/zVirtualMemory.cpp ! src/hotspot/share/gc/z/zWeakRootsProcessor.cpp ! src/hotspot/share/gc/z/zWorkers.cpp ! src/hotspot/share/interpreter/abstractInterpreter.cpp ! src/hotspot/share/interpreter/bootstrapInfo.cpp ! src/hotspot/share/interpreter/bytecode.cpp ! src/hotspot/share/interpreter/bytecodeHistogram.cpp ! src/hotspot/share/interpreter/bytecodeStream.cpp ! src/hotspot/share/interpreter/bytecodeTracer.cpp ! src/hotspot/share/interpreter/bytecodeUtils.cpp ! src/hotspot/share/interpreter/bytecodes.cpp ! src/hotspot/share/interpreter/interpreter.cpp ! src/hotspot/share/interpreter/interpreterRuntime.cpp ! src/hotspot/share/interpreter/invocationCounter.cpp ! src/hotspot/share/interpreter/linkResolver.cpp ! src/hotspot/share/interpreter/oopMapCache.cpp ! src/hotspot/share/interpreter/rewriter.cpp ! src/hotspot/share/interpreter/templateInterpreter.cpp ! src/hotspot/share/interpreter/templateInterpreterGenerator.cpp ! src/hotspot/share/interpreter/templateTable.cpp ! src/hotspot/share/interpreter/zero/bytecodeInterpreter.cpp ! src/hotspot/share/interpreter/zero/zeroInterpreterGenerator.cpp ! src/hotspot/share/jfr/dcmd/jfrDcmds.cpp ! src/hotspot/share/jfr/instrumentation/jfrEventClassTransformer.cpp ! src/hotspot/share/jfr/instrumentation/jfrJvmtiAgent.cpp ! src/hotspot/share/jfr/jfr.cpp ! src/hotspot/share/jfr/jni/jfrJavaCall.cpp ! src/hotspot/share/jfr/jni/jfrJavaSupport.cpp ! src/hotspot/share/jfr/jni/jfrJniMethod.cpp ! src/hotspot/share/jfr/jni/jfrJniMethodRegistration.cpp ! src/hotspot/share/jfr/jni/jfrUpcalls.cpp ! src/hotspot/share/jfr/leakprofiler/chains/bfsClosure.cpp ! src/hotspot/share/jfr/leakprofiler/chains/dfsClosure.cpp ! src/hotspot/share/jfr/leakprofiler/chains/edge.cpp ! src/hotspot/share/jfr/leakprofiler/chains/edgeQueue.cpp ! src/hotspot/share/jfr/leakprofiler/chains/edgeStore.cpp ! src/hotspot/share/jfr/leakprofiler/chains/edgeUtils.cpp ! src/hotspot/share/jfr/leakprofiler/chains/pathToGcRootsOperation.cpp ! src/hotspot/share/jfr/leakprofiler/chains/rootSetClosure.cpp ! src/hotspot/share/jfr/leakprofiler/checkpoint/eventEmitter.cpp ! src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleCheckpoint.cpp ! src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleDescription.cpp ! src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleWriter.cpp ! src/hotspot/share/jfr/leakprofiler/checkpoint/rootResolver.cpp ! src/hotspot/share/jfr/leakprofiler/leakProfiler.cpp ! src/hotspot/share/jfr/leakprofiler/sampling/objectSample.cpp ! src/hotspot/share/jfr/leakprofiler/sampling/objectSampler.cpp ! src/hotspot/share/jfr/leakprofiler/sampling/sampleList.cpp ! src/hotspot/share/jfr/leakprofiler/sampling/samplePriorityQueue.cpp ! src/hotspot/share/jfr/leakprofiler/utilities/granularTimer.cpp ! src/hotspot/share/jfr/leakprofiler/utilities/rootType.cpp ! src/hotspot/share/jfr/periodic/jfrCompilerQueueUtilization.cpp ! src/hotspot/share/jfr/periodic/jfrFinalizerStatisticsEvent.cpp ! src/hotspot/share/jfr/periodic/jfrModuleEvent.cpp ! src/hotspot/share/jfr/periodic/jfrNativeMemoryEvent.cpp ! src/hotspot/share/jfr/periodic/jfrNetworkUtilization.cpp ! src/hotspot/share/jfr/periodic/jfrOSInterface.cpp ! src/hotspot/share/jfr/periodic/jfrPeriodic.cpp ! src/hotspot/share/jfr/periodic/jfrThreadCPULoadEvent.cpp ! src/hotspot/share/jfr/periodic/jfrThreadDumpEvent.cpp ! src/hotspot/share/jfr/periodic/sampling/jfrCallTrace.cpp ! src/hotspot/share/jfr/periodic/sampling/jfrThreadSampler.cpp ! src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointManager.cpp ! src/hotspot/share/jfr/recorder/checkpoint/jfrCheckpointWriter.cpp ! src/hotspot/share/jfr/recorder/checkpoint/jfrMetadataEvent.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadGroup.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/jfrThreadState.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/jfrType.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeManager.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSet.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSetUtils.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceId.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceIdEpoch.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceIdKlassQueue.cpp ! src/hotspot/share/jfr/recorder/checkpoint/types/traceid/jfrTraceIdLoadBarrier.cpp ! src/hotspot/share/jfr/recorder/jfrEventSetting.cpp ! src/hotspot/share/jfr/recorder/jfrRecorder.cpp ! src/hotspot/share/jfr/recorder/repository/jfrChunk.cpp ! src/hotspot/share/jfr/recorder/repository/jfrChunkRotation.cpp ! src/hotspot/share/jfr/recorder/repository/jfrChunkWriter.cpp ! src/hotspot/share/jfr/recorder/repository/jfrEmergencyDump.cpp ! src/hotspot/share/jfr/recorder/repository/jfrRepository.cpp ! src/hotspot/share/jfr/recorder/service/jfrEvent.cpp ! src/hotspot/share/jfr/recorder/service/jfrEventThrottler.cpp ! src/hotspot/share/jfr/recorder/service/jfrMemorySizer.cpp ! src/hotspot/share/jfr/recorder/service/jfrOptionSet.cpp ! src/hotspot/share/jfr/recorder/service/jfrPostBox.cpp ! src/hotspot/share/jfr/recorder/service/jfrRecorderService.cpp ! src/hotspot/share/jfr/recorder/service/jfrRecorderThread.cpp ! src/hotspot/share/jfr/recorder/service/jfrRecorderThreadLoop.cpp ! src/hotspot/share/jfr/recorder/stacktrace/jfrStackFilter.cpp ! src/hotspot/share/jfr/recorder/stacktrace/jfrStackFilterRegistry.cpp ! src/hotspot/share/jfr/recorder/stacktrace/jfrStackTrace.cpp ! src/hotspot/share/jfr/recorder/stacktrace/jfrStackTraceRepository.cpp ! src/hotspot/share/jfr/recorder/storage/jfrBuffer.cpp ! src/hotspot/share/jfr/recorder/storage/jfrReferenceCountedStorage.cpp ! src/hotspot/share/jfr/recorder/storage/jfrStorage.cpp ! src/hotspot/share/jfr/recorder/storage/jfrStorageControl.cpp ! src/hotspot/share/jfr/recorder/storage/jfrVirtualMemory.cpp ! src/hotspot/share/jfr/recorder/stringpool/jfrStringPool.cpp ! src/hotspot/share/jfr/recorder/stringpool/jfrStringPoolBuffer.cpp ! src/hotspot/share/jfr/recorder/stringpool/jfrStringPoolWriter.cpp ! src/hotspot/share/jfr/support/jfrAdaptiveSampler.cpp ! src/hotspot/share/jfr/support/jfrAllocationTracer.cpp ! src/hotspot/share/jfr/support/jfrDeprecationEventWriter.cpp ! src/hotspot/share/jfr/support/jfrDeprecationManager.cpp ! src/hotspot/share/jfr/support/jfrFlush.cpp ! src/hotspot/share/jfr/support/jfrIntrinsics.cpp ! src/hotspot/share/jfr/support/jfrJdkJfrEvent.cpp ! src/hotspot/share/jfr/support/jfrKlassUnloading.cpp ! src/hotspot/share/jfr/support/jfrMethodData.cpp ! src/hotspot/share/jfr/support/jfrMethodLookup.cpp ! src/hotspot/share/jfr/support/jfrNativeLibraryLoadEvent.cpp ! src/hotspot/share/jfr/support/jfrObjectAllocationSample.cpp ! src/hotspot/share/jfr/support/jfrResolution.cpp ! src/hotspot/share/jfr/support/jfrStackTraceMark.cpp ! src/hotspot/share/jfr/support/jfrSymbolTable.cpp ! src/hotspot/share/jfr/support/jfrThreadLocal.cpp ! src/hotspot/share/jfr/utilities/jfrAllocation.cpp ! src/hotspot/share/jfr/utilities/jfrBlob.cpp ! src/hotspot/share/jfr/utilities/jfrJavaLog.cpp ! src/hotspot/share/jfr/utilities/jfrThreadIterator.cpp ! src/hotspot/share/jfr/utilities/jfrTime.cpp ! src/hotspot/share/jfr/utilities/jfrTimeConverter.cpp ! src/hotspot/share/jfr/writers/jfrJavaEventWriter.cpp ! src/hotspot/share/jvmci/jvmci.cpp ! src/hotspot/share/jvmci/jvmciCodeInstaller.cpp ! src/hotspot/share/jvmci/jvmciCompiler.cpp ! src/hotspot/share/jvmci/jvmciCompilerToVM.cpp ! src/hotspot/share/jvmci/jvmciCompilerToVMInit.cpp ! src/hotspot/share/jvmci/jvmciEnv.cpp ! src/hotspot/share/jvmci/jvmciJavaClasses.cpp ! src/hotspot/share/jvmci/jvmciRuntime.cpp ! src/hotspot/share/jvmci/jvmci_globals.cpp ! src/hotspot/share/jvmci/metadataHandles.cpp ! src/hotspot/share/jvmci/vmStructs_jvmci.cpp ! src/hotspot/share/libadt/dict.cpp ! src/hotspot/share/libadt/vectset.cpp ! src/hotspot/share/logging/logAsyncWriter.cpp ! src/hotspot/share/logging/logConfiguration.cpp ! src/hotspot/share/logging/logDecorations.cpp ! src/hotspot/share/logging/logDecorators.cpp ! src/hotspot/share/logging/logDiagnosticCommand.cpp ! src/hotspot/share/logging/logFileOutput.cpp ! src/hotspot/share/logging/logFileStreamOutput.cpp ! src/hotspot/share/logging/logLevel.cpp ! src/hotspot/share/logging/logMessageBuffer.cpp ! src/hotspot/share/logging/logOutput.cpp ! src/hotspot/share/logging/logOutputList.cpp ! src/hotspot/share/logging/logSelection.cpp ! src/hotspot/share/logging/logSelectionList.cpp ! src/hotspot/share/logging/logStream.cpp ! src/hotspot/share/logging/logTag.cpp ! src/hotspot/share/logging/logTagSet.cpp ! src/hotspot/share/logging/logTagSetDescriptions.cpp ! src/hotspot/share/memory/allocation.cpp ! src/hotspot/share/memory/arena.cpp ! src/hotspot/share/memory/classLoaderMetaspace.cpp ! src/hotspot/share/memory/guardedMemory.cpp ! src/hotspot/share/memory/heap.cpp ! src/hotspot/share/memory/heapInspection.cpp ! src/hotspot/share/memory/iterator.cpp ! src/hotspot/share/memory/memRegion.cpp ! src/hotspot/share/memory/memoryReserver.cpp ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/memory/metaspace/blockTree.cpp ! src/hotspot/share/memory/metaspace/chunkHeaderPool.cpp ! src/hotspot/share/memory/metaspace/chunkManager.cpp ! src/hotspot/share/memory/metaspace/chunklevel.cpp ! src/hotspot/share/memory/metaspace/commitLimiter.cpp ! src/hotspot/share/memory/metaspace/commitMask.cpp ! src/hotspot/share/memory/metaspace/freeBlocks.cpp ! src/hotspot/share/memory/metaspace/freeChunkList.cpp ! src/hotspot/share/memory/metaspace/internalStats.cpp ! src/hotspot/share/memory/metaspace/metachunk.cpp ! src/hotspot/share/memory/metaspace/metachunkList.cpp ! src/hotspot/share/memory/metaspace/metaspaceArena.cpp ! src/hotspot/share/memory/metaspace/metaspaceArenaGrowthPolicy.cpp ! src/hotspot/share/memory/metaspace/metaspaceCommon.cpp ! src/hotspot/share/memory/metaspace/metaspaceContext.cpp ! src/hotspot/share/memory/metaspace/metaspaceDCmd.cpp ! src/hotspot/share/memory/metaspace/metaspaceReporter.cpp ! src/hotspot/share/memory/metaspace/metaspaceSettings.cpp ! src/hotspot/share/memory/metaspace/metaspaceStatistics.cpp ! src/hotspot/share/memory/metaspace/printCLDMetaspaceInfoClosure.cpp ! src/hotspot/share/memory/metaspace/printMetaspaceInfoKlassClosure.cpp ! src/hotspot/share/memory/metaspace/rootChunkArea.cpp ! src/hotspot/share/memory/metaspace/runningCounters.cpp ! src/hotspot/share/memory/metaspace/testHelpers.cpp ! src/hotspot/share/memory/metaspace/virtualSpaceList.cpp ! src/hotspot/share/memory/metaspace/virtualSpaceNode.cpp ! src/hotspot/share/memory/metaspaceClosure.cpp ! src/hotspot/share/memory/metaspaceCounters.cpp ! src/hotspot/share/memory/metaspaceCriticalAllocation.cpp ! src/hotspot/share/memory/metaspaceTracer.cpp ! src/hotspot/share/memory/oopFactory.cpp ! src/hotspot/share/memory/reservedSpace.cpp ! src/hotspot/share/memory/resourceArea.cpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/memory/virtualspace.cpp ! src/hotspot/share/nmt/mallocHeader.cpp ! src/hotspot/share/nmt/mallocLimit.cpp ! src/hotspot/share/nmt/mallocSiteTable.cpp ! src/hotspot/share/nmt/mallocTracker.cpp ! src/hotspot/share/nmt/memBaseline.cpp ! src/hotspot/share/nmt/memMapPrinter.cpp ! src/hotspot/share/nmt/memReporter.cpp ! src/hotspot/share/nmt/memTracker.cpp ! src/hotspot/share/nmt/memoryFileTracker.cpp ! src/hotspot/share/nmt/nativeCallStackPrinter.cpp ! src/hotspot/share/nmt/nmtCommon.cpp ! src/hotspot/share/nmt/nmtDCmd.cpp ! src/hotspot/share/nmt/nmtNativeCallStackStorage.cpp ! src/hotspot/share/nmt/nmtPreInit.cpp ! src/hotspot/share/nmt/nmtUsage.cpp ! src/hotspot/share/nmt/threadStackTracker.cpp ! src/hotspot/share/nmt/virtualMemoryTracker.cpp ! src/hotspot/share/nmt/vmatree.cpp ! src/hotspot/share/oops/accessBackend.cpp ! src/hotspot/share/oops/annotations.cpp ! src/hotspot/share/oops/arrayKlass.cpp ! src/hotspot/share/oops/compressedKlass.cpp ! src/hotspot/share/oops/compressedOops.cpp ! src/hotspot/share/oops/constMethod.cpp ! src/hotspot/share/oops/constMethodFlags.cpp ! src/hotspot/share/oops/constantPool.cpp ! src/hotspot/share/oops/cpCache.cpp ! src/hotspot/share/oops/fieldInfo.cpp ! src/hotspot/share/oops/generateOopMap.cpp ! src/hotspot/share/oops/instanceClassLoaderKlass.cpp ! src/hotspot/share/oops/instanceKlass.cpp ! src/hotspot/share/oops/instanceKlassFlags.cpp ! src/hotspot/share/oops/instanceMirrorKlass.cpp ! src/hotspot/share/oops/instanceOop.cpp ! src/hotspot/share/oops/instanceRefKlass.cpp ! src/hotspot/share/oops/instanceStackChunkKlass.cpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klassFlags.cpp ! src/hotspot/share/oops/klassVtable.cpp ! src/hotspot/share/oops/markWord.cpp ! src/hotspot/share/oops/metadata.cpp ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/methodCounters.cpp ! src/hotspot/share/oops/methodData.cpp ! src/hotspot/share/oops/methodFlags.cpp ! src/hotspot/share/oops/objArrayKlass.cpp ! src/hotspot/share/oops/objArrayOop.cpp ! src/hotspot/share/oops/objLayout.cpp ! src/hotspot/share/oops/oop.cpp ! src/hotspot/share/oops/oopsHierarchy.cpp ! src/hotspot/share/oops/recordComponent.cpp ! src/hotspot/share/oops/resolvedFieldEntry.cpp ! src/hotspot/share/oops/resolvedIndyEntry.cpp ! src/hotspot/share/oops/resolvedMethodEntry.cpp ! src/hotspot/share/oops/stackChunkOop.cpp ! src/hotspot/share/oops/symbol.cpp ! src/hotspot/share/oops/symbolHandle.cpp ! src/hotspot/share/oops/typeArrayKlass.cpp ! src/hotspot/share/oops/weakHandle.cpp ! src/hotspot/share/opto/addnode.cpp ! src/hotspot/share/opto/arraycopynode.cpp ! src/hotspot/share/opto/block.cpp ! src/hotspot/share/opto/buildOopMap.cpp ! src/hotspot/share/opto/bytecodeInfo.cpp ! src/hotspot/share/opto/c2_CodeStubs.cpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/callGenerator.cpp ! src/hotspot/share/opto/callnode.cpp ! src/hotspot/share/opto/castnode.cpp ! src/hotspot/share/opto/cfgnode.cpp ! src/hotspot/share/opto/chaitin.cpp ! src/hotspot/share/opto/classes.cpp ! src/hotspot/share/opto/coalesce.cpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/connode.cpp ! src/hotspot/share/opto/constantTable.cpp ! src/hotspot/share/opto/convertnode.cpp ! src/hotspot/share/opto/countbitsnode.cpp ! src/hotspot/share/opto/divnode.cpp ! src/hotspot/share/opto/doCall.cpp ! src/hotspot/share/opto/domgraph.cpp ! src/hotspot/share/opto/escape.cpp ! src/hotspot/share/opto/gcm.cpp ! src/hotspot/share/opto/generateOptoStub.cpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/idealGraphPrinter.cpp ! src/hotspot/share/opto/idealKit.cpp ! src/hotspot/share/opto/ifg.cpp ! src/hotspot/share/opto/ifnode.cpp ! src/hotspot/share/opto/indexSet.cpp ! src/hotspot/share/opto/intrinsicnode.cpp ! src/hotspot/share/opto/lcm.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/live.cpp ! src/hotspot/share/opto/locknode.cpp ! src/hotspot/share/opto/loopPredicate.cpp ! src/hotspot/share/opto/loopTransform.cpp ! src/hotspot/share/opto/loopUnswitch.cpp ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/opto/loopopts.cpp ! src/hotspot/share/opto/machnode.cpp ! src/hotspot/share/opto/macro.cpp ! src/hotspot/share/opto/macroArrayCopy.cpp ! src/hotspot/share/opto/matcher.cpp ! src/hotspot/share/opto/mathexactnode.cpp ! src/hotspot/share/opto/memnode.cpp ! src/hotspot/share/opto/mempointer.cpp ! src/hotspot/share/opto/movenode.cpp ! src/hotspot/share/opto/mulnode.cpp ! src/hotspot/share/opto/multnode.cpp ! src/hotspot/share/opto/narrowptrnode.cpp ! src/hotspot/share/opto/node.cpp ! src/hotspot/share/opto/opaquenode.cpp ! src/hotspot/share/opto/opcodes.cpp ! src/hotspot/share/opto/output.cpp ! src/hotspot/share/opto/parse1.cpp ! src/hotspot/share/opto/parse2.cpp ! src/hotspot/share/opto/parse3.cpp ! src/hotspot/share/opto/parseHelper.cpp ! src/hotspot/share/opto/phase.cpp ! src/hotspot/share/opto/phaseX.cpp ! src/hotspot/share/opto/postaloc.cpp ! src/hotspot/share/opto/predicates.cpp ! src/hotspot/share/opto/reg_split.cpp ! src/hotspot/share/opto/regalloc.cpp ! src/hotspot/share/opto/regmask.cpp ! src/hotspot/share/opto/replacednodes.cpp ! src/hotspot/share/opto/rootnode.cpp ! src/hotspot/share/opto/runtime.cpp ! src/hotspot/share/opto/split_if.cpp ! src/hotspot/share/opto/stringopts.cpp ! src/hotspot/share/opto/subnode.cpp ! src/hotspot/share/opto/subtypenode.cpp ! src/hotspot/share/opto/superword.cpp ! src/hotspot/share/opto/superwordVTransformBuilder.cpp ! src/hotspot/share/opto/type.cpp ! src/hotspot/share/opto/vector.cpp ! src/hotspot/share/opto/vectorIntrinsics.cpp ! src/hotspot/share/opto/vectorization.cpp ! src/hotspot/share/opto/vectornode.cpp ! src/hotspot/share/opto/vtransform.cpp ! src/hotspot/share/prims/downcallLinker.cpp ! src/hotspot/share/prims/foreignGlobals.cpp ! src/hotspot/share/prims/forte.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/prims/jniCheck.cpp ! src/hotspot/share/prims/jniFastGetField.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/jvmtiAgent.cpp ! src/hotspot/share/prims/jvmtiAgentList.cpp ! src/hotspot/share/prims/jvmtiClassFileReconstituter.cpp ! src/hotspot/share/prims/jvmtiCodeBlobEvents.cpp ! src/hotspot/share/prims/jvmtiDeferredUpdates.cpp ! src/hotspot/share/prims/jvmtiEnter.xsl ! src/hotspot/share/prims/jvmtiEnv.cpp ! src/hotspot/share/prims/jvmtiEnvBase.cpp ! src/hotspot/share/prims/jvmtiEnvThreadState.cpp ! src/hotspot/share/prims/jvmtiEventController.cpp ! src/hotspot/share/prims/jvmtiExport.cpp ! src/hotspot/share/prims/jvmtiExtensions.cpp ! src/hotspot/share/prims/jvmtiGetLoadedClasses.cpp ! src/hotspot/share/prims/jvmtiImpl.cpp ! src/hotspot/share/prims/jvmtiManageCapabilities.cpp ! src/hotspot/share/prims/jvmtiRawMonitor.cpp ! src/hotspot/share/prims/jvmtiRedefineClasses.cpp ! src/hotspot/share/prims/jvmtiTagMap.cpp ! src/hotspot/share/prims/jvmtiTagMapTable.cpp ! src/hotspot/share/prims/jvmtiThreadState.cpp ! src/hotspot/share/prims/jvmtiTrace.cpp ! src/hotspot/share/prims/jvmtiUtil.cpp ! src/hotspot/share/prims/methodComparator.cpp ! src/hotspot/share/prims/methodHandles.cpp ! src/hotspot/share/prims/nativeEntryPoint.cpp ! src/hotspot/share/prims/nativeLookup.cpp ! src/hotspot/share/prims/perf.cpp ! src/hotspot/share/prims/resolvedMethodTable.cpp ! src/hotspot/share/prims/scopedMemoryAccess.cpp ! src/hotspot/share/prims/stackwalk.cpp ! src/hotspot/share/prims/unsafe.cpp ! src/hotspot/share/prims/upcallLinker.cpp ! src/hotspot/share/prims/upcallStubs.cpp ! src/hotspot/share/prims/vectorSupport.cpp ! src/hotspot/share/prims/vmstorage.cpp ! src/hotspot/share/prims/wbtestmethods/parserTests.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/abstract_vm_version.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/basicLock.cpp ! src/hotspot/share/runtime/continuation.cpp ! src/hotspot/share/runtime/continuationEntry.cpp ! src/hotspot/share/runtime/continuationFreezeThaw.cpp ! src/hotspot/share/runtime/continuationJavaClasses.cpp ! src/hotspot/share/runtime/continuationWrapper.cpp ! src/hotspot/share/runtime/cpuTimeCounters.cpp ! src/hotspot/share/runtime/deoptimization.cpp ! src/hotspot/share/runtime/escapeBarrier.cpp ! src/hotspot/share/runtime/fieldDescriptor.cpp ! src/hotspot/share/runtime/flags/jvmFlag.cpp ! src/hotspot/share/runtime/flags/jvmFlagAccess.cpp ! src/hotspot/share/runtime/flags/jvmFlagConstraintsCompiler.cpp ! src/hotspot/share/runtime/flags/jvmFlagConstraintsRuntime.cpp ! src/hotspot/share/runtime/flags/jvmFlagLimit.cpp ! src/hotspot/share/runtime/flags/jvmFlagLookup.cpp ! src/hotspot/share/runtime/frame.cpp ! src/hotspot/share/runtime/globals.cpp ! src/hotspot/share/runtime/handles.cpp ! src/hotspot/share/runtime/handshake.cpp ! src/hotspot/share/runtime/icache.cpp ! src/hotspot/share/runtime/init.cpp ! src/hotspot/share/runtime/interfaceSupport.cpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/javaCalls.cpp ! src/hotspot/share/runtime/javaThread.cpp ! src/hotspot/share/runtime/jniHandles.cpp ! src/hotspot/share/runtime/jniPeriodicChecker.cpp ! src/hotspot/share/runtime/keepStackGCProcessed.cpp ! src/hotspot/share/runtime/lightweightSynchronizer.cpp ! src/hotspot/share/runtime/linkType.cpp ! src/hotspot/share/runtime/lockStack.cpp ! src/hotspot/share/runtime/monitorChunk.cpp ! src/hotspot/share/runtime/monitorDeflationThread.cpp ! src/hotspot/share/runtime/mutex.cpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/nonJavaThread.cpp ! src/hotspot/share/runtime/notificationThread.cpp ! src/hotspot/share/runtime/objectMonitor.cpp ! src/hotspot/share/runtime/orderAccess.cpp ! src/hotspot/share/runtime/os.cpp ! src/hotspot/share/runtime/osInfo.cpp ! src/hotspot/share/runtime/osThreadBase.cpp ! src/hotspot/share/runtime/park.cpp ! src/hotspot/share/runtime/perfData.cpp ! src/hotspot/share/runtime/perfMemory.cpp ! src/hotspot/share/runtime/reflection.cpp ! src/hotspot/share/runtime/reflectionUtils.cpp ! src/hotspot/share/runtime/relocator.cpp ! src/hotspot/share/runtime/safepoint.cpp ! src/hotspot/share/runtime/safepointMechanism.cpp ! src/hotspot/share/runtime/safepointVerifiers.cpp ! src/hotspot/share/runtime/serviceThread.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/sharedRuntimeTrans.cpp ! src/hotspot/share/runtime/sharedRuntimeTrig.cpp ! src/hotspot/share/runtime/signature.cpp ! src/hotspot/share/runtime/stackChunkFrameStream.cpp ! src/hotspot/share/runtime/stackFrameStream.cpp ! src/hotspot/share/runtime/stackOverflow.cpp ! src/hotspot/share/runtime/stackValue.cpp ! src/hotspot/share/runtime/stackValueCollection.cpp ! src/hotspot/share/runtime/stackWatermark.cpp ! src/hotspot/share/runtime/stackWatermarkSet.cpp ! src/hotspot/share/runtime/statSampler.cpp ! src/hotspot/share/runtime/stubCodeGenerator.cpp ! src/hotspot/share/runtime/stubRoutines.cpp ! src/hotspot/share/runtime/suspendedThreadTask.cpp ! src/hotspot/share/runtime/synchronizer.cpp ! src/hotspot/share/runtime/task.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/threadHeapSampler.cpp ! src/hotspot/share/runtime/threadIdentifier.cpp ! src/hotspot/share/runtime/threadSMR.cpp ! src/hotspot/share/runtime/threads.cpp ! src/hotspot/share/runtime/timer.cpp ! src/hotspot/share/runtime/timerTrace.cpp ! src/hotspot/share/runtime/trimNativeHeap.cpp ! src/hotspot/share/runtime/unhandledOops.cpp ! src/hotspot/share/runtime/vframe.cpp ! src/hotspot/share/runtime/vframeArray.cpp ! src/hotspot/share/runtime/vframe_hp.cpp ! src/hotspot/share/runtime/vmOperations.cpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/hotspot/share/runtime/vmThread.cpp ! src/hotspot/share/runtime/vm_version.cpp ! src/hotspot/share/services/attachListener.cpp ! src/hotspot/share/services/classLoadingService.cpp ! src/hotspot/share/services/diagnosticArgument.cpp ! src/hotspot/share/services/diagnosticCommand.cpp ! src/hotspot/share/services/diagnosticFramework.cpp ! src/hotspot/share/services/finalizerService.cpp ! src/hotspot/share/services/gcNotifier.cpp ! src/hotspot/share/services/heapDumper.cpp ! src/hotspot/share/services/heapDumperCompression.cpp ! src/hotspot/share/services/lowMemoryDetector.cpp ! src/hotspot/share/services/management.cpp ! src/hotspot/share/services/memoryManager.cpp ! src/hotspot/share/services/memoryPool.cpp ! src/hotspot/share/services/memoryService.cpp ! src/hotspot/share/services/runtimeService.cpp ! src/hotspot/share/services/threadIdTable.cpp ! src/hotspot/share/services/threadService.cpp ! src/hotspot/share/services/writeableFlags.cpp ! src/hotspot/share/utilities/accessFlags.cpp ! src/hotspot/share/utilities/bitMap.cpp ! src/hotspot/share/utilities/classpathStream.cpp ! src/hotspot/share/utilities/constantTag.cpp ! src/hotspot/share/utilities/copy.cpp ! src/hotspot/share/utilities/debug.cpp ! src/hotspot/share/utilities/decoder.cpp ! src/hotspot/share/utilities/decoder_elf.cpp ! src/hotspot/share/utilities/elfFile.cpp ! src/hotspot/share/utilities/elfFuncDescTable.cpp ! src/hotspot/share/utilities/elfStringTable.cpp ! src/hotspot/share/utilities/elfSymbolTable.cpp ! src/hotspot/share/utilities/events.cpp ! src/hotspot/share/utilities/exceptions.cpp ! src/hotspot/share/utilities/formatBuffer.cpp ! src/hotspot/share/utilities/globalCounter.cpp ! src/hotspot/share/utilities/globalDefinitions.cpp ! src/hotspot/share/utilities/growableArray.cpp ! src/hotspot/share/utilities/istream.cpp ! src/hotspot/share/utilities/json.cpp ! src/hotspot/share/utilities/nativeCallStack.cpp ! src/hotspot/share/utilities/nativeStackPrinter.cpp ! src/hotspot/share/utilities/numberSeq.cpp ! src/hotspot/share/utilities/ostream.cpp ! src/hotspot/share/utilities/preserveException.cpp ! src/hotspot/share/utilities/singleWriterSynchronizer.cpp ! src/hotspot/share/utilities/spinYield.cpp ! src/hotspot/share/utilities/stringUtils.cpp ! src/hotspot/share/utilities/tableStatistics.cpp ! src/hotspot/share/utilities/ticks.cpp ! src/hotspot/share/utilities/unsigned5.cpp ! src/hotspot/share/utilities/utf8.cpp ! src/hotspot/share/utilities/virtualizationSupport.cpp ! src/hotspot/share/utilities/vmError.cpp ! src/hotspot/share/utilities/waitBarrier_generic.cpp ! src/hotspot/share/utilities/xmlstream.cpp ! src/hotspot/share/utilities/zipLibrary.cpp ! test/hotspot/gtest/aarch64/test_assembler_aarch64.cpp ! test/hotspot/gtest/cds/test_archiveWorkers.cpp ! test/hotspot/gtest/classfile/test_AltHashing.cpp ! test/hotspot/gtest/classfile/test_placeholders.cpp ! test/hotspot/gtest/classfile/test_stringConversion.cpp ! test/hotspot/gtest/classfile/test_stringIntern.cpp ! test/hotspot/gtest/classfile/test_symbolTable.cpp ! test/hotspot/gtest/code/test_codestrings.cpp ! test/hotspot/gtest/code/test_vtableStub.cpp ! test/hotspot/gtest/compiler/test_directivesParser.cpp ! test/hotspot/gtest/gc/g1/test_freeRegionList.cpp ! test/hotspot/gtest/gc/g1/test_g1Analytics.cpp ! test/hotspot/gtest/gc/g1/test_g1BatchedGangTask.cpp ! test/hotspot/gtest/gc/g1/test_g1BiasedArray.cpp ! test/hotspot/gtest/gc/g1/test_g1CardSet.cpp ! test/hotspot/gtest/gc/g1/test_g1CardSetContainers.cpp ! test/hotspot/gtest/gc/g1/test_g1CodeRootSet.cpp ! test/hotspot/gtest/gc/g1/test_g1FreeIdSet.cpp ! test/hotspot/gtest/gc/g1/test_g1HeapVerifier.cpp ! test/hotspot/gtest/gc/g1/test_g1IHOPControl.cpp ! test/hotspot/gtest/gc/g1/test_g1Predictions.cpp ! test/hotspot/gtest/gc/g1/test_g1RegionMap.cpp ! test/hotspot/gtest/gc/g1/test_g1ServiceThread.cpp ! test/hotspot/gtest/gc/g1/test_heapRegion.cpp ! test/hotspot/gtest/gc/g1/test_stressCommitUncommit.cpp ! test/hotspot/gtest/gc/parallel/test_psAdaptiveSizePolicy.cpp ! test/hotspot/gtest/gc/shared/test_bufferNodeAllocator.cpp ! test/hotspot/gtest/gc/shared/test_collectedHeap.cpp ! test/hotspot/gtest/gc/shared/test_collectorPolicy.cpp ! test/hotspot/gtest/gc/shared/test_gcTimer.cpp ! test/hotspot/gtest/gc/shared/test_memset_with_concurrent_readers.cpp ! test/hotspot/gtest/gc/shared/test_oopStorage.cpp ! test/hotspot/gtest/gc/shared/test_oopStorageSet.cpp ! test/hotspot/gtest/gc/shared/test_oopStorage_parperf.cpp ! test/hotspot/gtest/gc/shared/test_partialArrayTaskStepper.cpp ! test/hotspot/gtest/gc/shared/test_preservedMarks.cpp ! test/hotspot/gtest/gc/shared/test_workerDataArray.cpp ! test/hotspot/gtest/gc/shenandoah/test_shenandoahNumberSeq.cpp ! test/hotspot/gtest/gc/shenandoah/test_shenandoahOldGeneration.cpp ! test/hotspot/gtest/gc/shenandoah/test_shenandoahOldHeuristic.cpp ! test/hotspot/gtest/gc/shenandoah/test_shenandoahSimpleBitMap.cpp ! test/hotspot/gtest/gc/z/test_zAddress.cpp ! test/hotspot/gtest/gc/z/test_zArray.cpp ! test/hotspot/gtest/gc/z/test_zBitField.cpp ! test/hotspot/gtest/gc/z/test_zBitMap.cpp ! test/hotspot/gtest/gc/z/test_zForwarding.cpp ! test/hotspot/gtest/gc/z/test_zIndexDistributor.cpp ! test/hotspot/gtest/gc/z/test_zList.cpp ! test/hotspot/gtest/gc/z/test_zLiveMap.cpp ! test/hotspot/gtest/gc/z/test_zMapper_windows.cpp ! test/hotspot/gtest/gc/z/test_zMemory.cpp ! test/hotspot/gtest/gc/z/test_zPhysicalMemory.cpp ! test/hotspot/gtest/gc/z/test_zVirtualMemory.cpp ! test/hotspot/gtest/jfr/test_adaptiveSampler.cpp ! test/hotspot/gtest/jfr/test_networkUtilization.cpp ! test/hotspot/gtest/jfr/test_threadCpuLoad.cpp ! test/hotspot/gtest/logging/logTestFixture.cpp ! test/hotspot/gtest/logging/test_asynclog.cpp ! test/hotspot/gtest/logging/test_gcTraceTime.cpp ! test/hotspot/gtest/logging/test_log.cpp ! test/hotspot/gtest/logging/test_logConfiguration.cpp ! test/hotspot/gtest/logging/test_logDecorations.cpp ! test/hotspot/gtest/logging/test_logDecorators.cpp ! test/hotspot/gtest/logging/test_logDefaultDecorators.cpp ! test/hotspot/gtest/logging/test_logFileOutput.cpp ! test/hotspot/gtest/logging/test_logLevel.cpp ! test/hotspot/gtest/logging/test_logMessageTest.cpp ! test/hotspot/gtest/logging/test_logOutputList.cpp ! test/hotspot/gtest/logging/test_logSelection.cpp ! test/hotspot/gtest/logging/test_logSelectionList.cpp ! test/hotspot/gtest/logging/test_logStream.cpp ! test/hotspot/gtest/logging/test_logTag.cpp ! test/hotspot/gtest/logging/test_logTagSet.cpp ! test/hotspot/gtest/logging/test_logTagSetDescriptions.cpp ! test/hotspot/gtest/memory/test_arena.cpp ! test/hotspot/gtest/memory/test_arrayAllocator.cpp ! test/hotspot/gtest/memory/test_guardedMemory.cpp ! test/hotspot/gtest/memory/test_virtualspace.cpp ! test/hotspot/gtest/metaprogramming/test_enableIf.cpp ! test/hotspot/gtest/metaprogramming/test_logical.cpp ! test/hotspot/gtest/metaprogramming/test_primitiveConversions.cpp ! test/hotspot/gtest/metaspace/metaspaceGtestCommon.cpp ! test/hotspot/gtest/metaspace/metaspaceGtestContexts.cpp ! test/hotspot/gtest/metaspace/test_arenagrowthpolicy.cpp ! test/hotspot/gtest/metaspace/test_binlist.cpp ! test/hotspot/gtest/metaspace/test_blocktree.cpp ! test/hotspot/gtest/metaspace/test_chunkManager_stress.cpp ! test/hotspot/gtest/metaspace/test_chunkheaderpool.cpp ! test/hotspot/gtest/metaspace/test_clms.cpp ! test/hotspot/gtest/metaspace/test_commitmask.cpp ! test/hotspot/gtest/metaspace/test_freeblocks.cpp ! test/hotspot/gtest/metaspace/test_internstats.cpp ! test/hotspot/gtest/metaspace/test_is_metaspace_obj.cpp ! test/hotspot/gtest/metaspace/test_metablock.cpp ! test/hotspot/gtest/metaspace/test_metachunk.cpp ! test/hotspot/gtest/metaspace/test_metachunklist.cpp ! test/hotspot/gtest/metaspace/test_metaspaceUtils.cpp ! test/hotspot/gtest/metaspace/test_metaspace_misc.cpp ! test/hotspot/gtest/metaspace/test_metaspacearena.cpp ! test/hotspot/gtest/metaspace/test_metaspacearena_stress.cpp ! test/hotspot/gtest/metaspace/test_virtualspacenode.cpp ! test/hotspot/gtest/nmt/test_arrayWithFreeList.cpp ! test/hotspot/gtest/nmt/test_nmt_buffer_overflow_detection.cpp ! test/hotspot/gtest/nmt/test_nmt_cornercases.cpp ! test/hotspot/gtest/nmt/test_nmt_locationprinting.cpp ! test/hotspot/gtest/nmt/test_nmt_malloclimit.cpp ! test/hotspot/gtest/nmt/test_nmt_memoryfiletracker.cpp ! test/hotspot/gtest/nmt/test_nmt_nativecallstackstorage.cpp ! test/hotspot/gtest/nmt/test_nmt_reserved_region.cpp ! test/hotspot/gtest/nmt/test_nmt_totals.cpp ! test/hotspot/gtest/nmt/test_nmt_treap.cpp ! test/hotspot/gtest/nmt/test_nmtpreinit.cpp ! test/hotspot/gtest/nmt/test_nmtpreinitmap.cpp ! test/hotspot/gtest/nmt/test_vmatree.cpp ! test/hotspot/gtest/oops/test_arrayOop.cpp ! test/hotspot/gtest/oops/test_compressedKlass.cpp ! test/hotspot/gtest/oops/test_cpCache_output.cpp ! test/hotspot/gtest/oops/test_instanceKlass.cpp ! test/hotspot/gtest/oops/test_markWord.cpp ! test/hotspot/gtest/oops/test_objArrayOop.cpp ! test/hotspot/gtest/oops/test_oop.cpp ! test/hotspot/gtest/oops/test_typeArrayOop.cpp ! test/hotspot/gtest/opto/test_compress_expand_bits.cpp ! test/hotspot/gtest/opto/test_mathexact.cpp ! test/hotspot/gtest/opto/test_no_overflow_int.cpp ! test/hotspot/gtest/opto/test_regmask.cpp ! test/hotspot/gtest/riscv/test_assembler_riscv.cpp ! test/hotspot/gtest/runtime/test_ThreadsListHandle.cpp ! test/hotspot/gtest/runtime/test_arguments.cpp ! test/hotspot/gtest/runtime/test_atomic.cpp ! test/hotspot/gtest/runtime/test_cgroupSubsystem_linux.cpp ! test/hotspot/gtest/runtime/test_classLoader.cpp ! test/hotspot/gtest/runtime/test_classPrinter.cpp ! test/hotspot/gtest/runtime/test_committed_virtualmemory.cpp ! test/hotspot/gtest/runtime/test_globals.cpp ! test/hotspot/gtest/runtime/test_lockStack.cpp ! test/hotspot/gtest/runtime/test_mutex.cpp ! test/hotspot/gtest/runtime/test_objectMonitor.cpp ! test/hotspot/gtest/runtime/test_os.cpp ! test/hotspot/gtest/runtime/test_os_aix.cpp ! test/hotspot/gtest/runtime/test_os_linux.cpp ! test/hotspot/gtest/runtime/test_os_reserve_between.cpp ! test/hotspot/gtest/runtime/test_os_windows.cpp ! test/hotspot/gtest/runtime/test_perfdata.cpp ! test/hotspot/gtest/runtime/test_safefetch.cpp ! test/hotspot/gtest/runtime/test_semaphore.cpp ! test/hotspot/gtest/runtime/test_signals.cpp ! test/hotspot/gtest/runtime/test_signatureStream.cpp ! test/hotspot/gtest/runtime/test_special_flags.cpp ! test/hotspot/gtest/runtime/test_stackoverflow.cpp ! test/hotspot/gtest/runtime/test_stubRoutines.cpp ! test/hotspot/gtest/runtime/test_synchronizer.cpp ! test/hotspot/gtest/runtime/test_threads.cpp ! test/hotspot/gtest/runtime/test_trim_native.cpp ! test/hotspot/gtest/runtime/test_virtualMemoryTracker.cpp ! test/hotspot/gtest/runtime/test_vmStructs.cpp ! test/hotspot/gtest/testutils.cpp ! test/hotspot/gtest/unittest.cpp ! test/hotspot/gtest/utilities/test_abs.cpp ! test/hotspot/gtest/utilities/test_align.cpp ! test/hotspot/gtest/utilities/test_bitMap.cpp ! test/hotspot/gtest/utilities/test_bitMap_iterate.cpp ! test/hotspot/gtest/utilities/test_bitMap_large.cpp ! test/hotspot/gtest/utilities/test_bitMap_popcnt.cpp ! test/hotspot/gtest/utilities/test_bitMap_search.cpp ! test/hotspot/gtest/utilities/test_bitMap_setops.cpp ! test/hotspot/gtest/utilities/test_byteswap.cpp ! test/hotspot/gtest/utilities/test_chunkedList.cpp ! test/hotspot/gtest/utilities/test_concurrentHashtable.cpp ! test/hotspot/gtest/utilities/test_count_leading_zeros.cpp ! test/hotspot/gtest/utilities/test_count_trailing_zeros.cpp ! test/hotspot/gtest/utilities/test_enumIterator.cpp ! test/hotspot/gtest/utilities/test_filterQueue.cpp ! test/hotspot/gtest/utilities/test_globalCounter.cpp ! test/hotspot/gtest/utilities/test_globalCounter_nested.cpp ! test/hotspot/gtest/utilities/test_globalDefinitions.cpp ! test/hotspot/gtest/utilities/test_growableArray.cpp ! test/hotspot/gtest/utilities/test_istream.cpp ! test/hotspot/gtest/utilities/test_java_arithmetic.cpp ! test/hotspot/gtest/utilities/test_json.cpp ! test/hotspot/gtest/utilities/test_linkedlist.cpp ! test/hotspot/gtest/utilities/test_lockFreeStack.cpp ! test/hotspot/gtest/utilities/test_metaspaceClosure.cpp ! test/hotspot/gtest/utilities/test_nonblockingQueue.cpp ! test/hotspot/gtest/utilities/test_objectBitSet.cpp ! test/hotspot/gtest/utilities/test_ostream.cpp ! test/hotspot/gtest/utilities/test_parse_memory_size.cpp ! test/hotspot/gtest/utilities/test_population_count.cpp ! test/hotspot/gtest/utilities/test_powerOfTwo.cpp ! test/hotspot/gtest/utilities/test_quicksort.cpp ! test/hotspot/gtest/utilities/test_resourceHash.cpp ! test/hotspot/gtest/utilities/test_reverse_bits.cpp ! test/hotspot/gtest/utilities/test_singleWriterSynchronizer.cpp ! test/hotspot/gtest/utilities/test_sizes.cpp ! test/hotspot/gtest/utilities/test_spinYield.cpp ! test/hotspot/gtest/utilities/test_stringUtils.cpp ! test/hotspot/gtest/utilities/test_tribool.cpp ! test/hotspot/gtest/utilities/test_unsigned5.cpp ! test/hotspot/gtest/utilities/test_utf8.cpp ! test/hotspot/gtest/utilities/test_valueObjArray.cpp ! test/hotspot/gtest/utilities/test_vmerror.cpp ! test/hotspot/gtest/utilities/test_waitBarrier.cpp ! test/hotspot/gtest/x86/test_assemblerx86.cpp Changeset: 4a9fba61 Branch: premain Author: Coleen Phillimore Date: 2025-01-21 13:18:58 +0000 URL: https://git.openjdk.org/leyden/commit/4a9fba615da0dfa6646ecb9fd9d929f74fe6875e 8347990: Remove SIZE_FORMAT macros and replace remaining uses Reviewed-by: dholmes, kbarrett ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/utilities/globalDefinitions.hpp ! test/hotspot/gtest/gc/g1/test_g1FreeIdSet.cpp ! test/hotspot/gtest/gc/shared/test_bufferNodeAllocator.cpp ! test/hotspot/gtest/gc/shared/test_oopStorage.cpp ! test/hotspot/gtest/gc/shared/test_workerDataArray.cpp ! test/hotspot/gtest/logging/test_logFileOutput.cpp ! test/hotspot/gtest/logging/test_logMessageTest.cpp ! test/hotspot/gtest/memory/test_arena.cpp ! test/hotspot/gtest/metaspace/test_blocktree.cpp ! test/hotspot/gtest/metaspace/test_chunkheaderpool.cpp ! test/hotspot/gtest/metaspace/test_commitmask.cpp ! test/hotspot/gtest/metaspace/test_metachunk.cpp ! test/hotspot/gtest/metaspace/test_metaspacearena.cpp ! test/hotspot/gtest/metaspace/test_virtualspacenode.cpp ! test/hotspot/gtest/nmt/test_nmt_cornercases.cpp ! test/hotspot/gtest/nmt/test_nmt_locationprinting.cpp ! test/hotspot/gtest/nmt/test_nmt_totals.cpp ! test/hotspot/gtest/runtime/test_os.cpp ! test/hotspot/gtest/utilities/test_align.cpp ! test/hotspot/gtest/utilities/test_globalDefinitions.cpp ! test/hotspot/gtest/utilities/test_lockFreeStack.cpp ! test/hotspot/gtest/utilities/test_nonblockingQueue.cpp ! test/hotspot/gtest/utilities/test_singleWriterSynchronizer.cpp ! test/hotspot/gtest/utilities/test_vmerror.cpp Changeset: 48c75976 Branch: premain Author: Thomas Stuefe Date: 2025-01-21 14:46:25 +0000 URL: https://git.openjdk.org/leyden/commit/48c75976b13d891b30ba936ea27fa1f034fd5356 8348029: Make gtest death tests work with real crash signals Reviewed-by: mbaesken, szaldana ! src/hotspot/share/utilities/vmError.cpp ! test/hotspot/gtest/unittest.hpp Changeset: 5c4a387b Branch: premain Author: Daniel Fuchs Date: 2025-01-21 14:46:53 +0000 URL: https://git.openjdk.org/leyden/commit/5c4a387b7e5643815542dd6938e8e1dbb817ad90 8348107: test/jdk/java/net/httpclient/HttpsTunnelAuthTest.java fails intermittently Reviewed-by: jpai ! test/jdk/java/net/httpclient/HttpsTunnelAuthTest.java Changeset: 1ed396b4 Branch: premain Author: Simon Tooke Committer: Severin Gehwolf Date: 2025-01-21 15:01:37 +0000 URL: https://git.openjdk.org/leyden/commit/1ed396b4fc5e8e5ed69694449993b9330e396531 8346927: serviceability/dcmd/vm/[SystemMapTest.java|SystemDumpMapTest.java] fail at jmx Reviewed-by: kevinw ! test/hotspot/jtreg/serviceability/dcmd/vm/SystemMapTestBase.java Changeset: 8e8c9482 Branch: premain Author: SendaoYan Date: 2025-01-21 15:32:05 +0000 URL: https://git.openjdk.org/leyden/commit/8e8c9482a972a0b8fe6de0887af8a6558f774d23 8346866: [ASAN] memoryReserver.cpp reported applying non-zero offset to non-null pointer produced null pointer Co-authored-by: Axel Boldt-Christmas Reviewed-by: kbarrett, stefank ! src/hotspot/share/memory/memoryReserver.cpp Changeset: a62a8701 Branch: premain Author: Daniel Fuchs Date: 2025-01-21 16:04:04 +0000 URL: https://git.openjdk.org/leyden/commit/a62a870150cf199f16277b478af2f5d937255b3c 8347995: Race condition in jdk/java/net/httpclient/offline/FixedResponseHttpClient.java Reviewed-by: jpai ! test/jdk/java/net/httpclient/offline/FixedResponseHttpClient.java Changeset: 3d4afc49 Branch: premain Author: Kevin Walls Date: 2025-01-21 17:23:04 +0000 URL: https://git.openjdk.org/leyden/commit/3d4afc492ac3054fe2bd10f0a76635a613f31033 8345079: Simplify/cleanup Exception handling in RMIConnectionImpl Reviewed-by: dfuchs ! src/java.management.rmi/share/classes/javax/management/remote/rmi/RMIConnectionImpl.java Changeset: 81912e95 Branch: premain Author: Naoto Sato Date: 2025-01-21 18:29:56 +0000 URL: https://git.openjdk.org/leyden/commit/81912e958ba77c1c9371305ecfedad13aaa3fa6a 8347841: Test fixes that use deprecated time zone IDs Reviewed-by: jlu, joehw ! test/jdk/java/io/File/TimeZoneLastModified.java ! test/jdk/java/text/Format/DateFormat/DateFormatRegression.java ! test/jdk/java/text/Format/DateFormat/DateFormatTest.java ! test/jdk/java/text/Format/DateFormat/SDFTCKZoneNamesTest.java ! test/jdk/java/text/Format/DateFormat/bug4358730.java ! test/jdk/java/util/Calendar/CalendarRegression.java ! test/jdk/java/util/Calendar/JavatimeTest.java ! test/jdk/java/util/Calendar/bug4316678.java ! test/jdk/java/util/Calendar/bug4372743.java ! test/jdk/java/util/Date/Bug4955000.java ! test/jdk/java/util/Date/DateRegression.java ! test/jdk/java/util/Date/DateTest.java ! test/jdk/java/util/PluggableLocale/TimeZoneNameProviderTest.java ! test/jdk/java/util/Properties/StoreDeadlock.java ! test/jdk/java/util/TimeZone/Bug5097350.java ! test/jdk/java/util/TimeZone/Bug6329116.java ! test/jdk/java/util/TimeZone/Bug6772689.java ! test/jdk/java/util/TimeZone/DaylightTimeTest.java ! test/jdk/java/util/TimeZone/IDTest.java ! test/jdk/java/util/TimeZone/ListTimeZones.java ! test/jdk/java/util/TimeZone/TimeZoneBoundaryTest.java ! test/jdk/java/util/TimeZone/TimeZoneRegression.java ! test/jdk/java/util/TimeZone/bug4096952.java ! test/jdk/sun/security/x509/X509CertImpl/V3Certificate.java ! test/jdk/sun/util/resources/TimeZone/Bug4640234.java ! test/jdk/sun/util/resources/cldr/Bug8134384.java ! test/jdk/sun/util/resources/cldr/Bug8202764.java Changeset: 6a29a811 Branch: premain Author: William Kemper Date: 2025-01-21 18:36:19 +0000 URL: https://git.openjdk.org/leyden/commit/6a29a8110ec38b4adc8163ba8651cbc935353f1d 8345750: Shenandoah: Test TestJcmdHeapDump.java#aggressive intermittent assert(gc_cause() == GCCause::_no_gc) failed: Over-writing cause Reviewed-by: kdnilsen, ysr ! src/hotspot/share/gc/shared/gcVMOperations.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.hpp ! src/hotspot/share/services/heapDumper.cpp Changeset: 25fecaaf Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-21 19:02:08 +0000 URL: https://git.openjdk.org/leyden/commit/25fecaaf87400af535c242fe50296f1f89ceeb16 8348039: testmake fails at IDEA after JDK-8347825 Reviewed-by: erikj ! test/make/TestIdea.gmk Changeset: f2a9d26b Branch: premain Author: Brian Burkhalter Date: 2025-01-21 19:07:17 +0000 URL: https://git.openjdk.org/leyden/commit/f2a9d26b2e409a7216d967ebb6b92726e8ed65c3 8347740: java/io/File/createTempFile/SpecialTempFile.java failing Reviewed-by: djelinski ! test/jdk/java/io/File/createTempFile/SpecialTempFile.java Changeset: c38417a8 Branch: premain Author: Aleksey Shipilev Date: 2025-01-21 19:23:33 +0000 URL: https://git.openjdk.org/leyden/commit/c38417a86e27f047715cfd9a98770387d994a512 8348186: C1: Purge fpu_stack_size infrastructure Reviewed-by: kvn ! src/hotspot/cpu/x86/c1_LinearScan_x86.cpp ! src/hotspot/share/c1/c1_LIR.hpp Changeset: bbd88077 Branch: premain Author: Leonid Mesnik Date: 2025-01-21 21:10:43 +0000 URL: https://git.openjdk.org/leyden/commit/bbd880775f73ac11dc2c86ec5b598bdb4305e699 8338428: Add logging of final VM flags while setting properties Reviewed-by: dholmes, rriggs ! test/hotspot/jtreg/TEST.ROOT ! test/jdk/TEST.ROOT Changeset: 7a6ff920 Branch: premain Author: Serguei Spitsyn Date: 2025-01-21 21:37:34 +0000 URL: https://git.openjdk.org/leyden/commit/7a6ff9206a0a4d116dec542819d51daa558d200d 8345543: Test serviceability/jvmti/vthread/StopThreadTest/StopThreadTest.java failed: expected JVMTI_ERROR_OPAQUE_FRAME instead of: 0 Reviewed-by: pchilanomate, dholmes, alanb ! src/hotspot/share/runtime/objectMonitor.cpp ! src/hotspot/share/runtime/objectMonitor.hpp Changeset: 8458f886 Branch: premain Author: Abhishek Kumar Date: 2025-01-22 05:51:38 +0000 URL: https://git.openjdk.org/leyden/commit/8458f886bd3bf64e23e74262d8ad61e735f9bce9 8347475: GTK: javax/swing/JColorChooser/Test8152419.java there are no swatches or RGB tab in JColorChooser Reviewed-by: aivanov, azvegint, prr, kizune ! test/jdk/javax/swing/JColorChooser/Test8152419.java Changeset: 3c2a1d87 Branch: premain Author: David Holmes Date: 2025-01-22 06:10:24 +0000 URL: https://git.openjdk.org/leyden/commit/3c2a1d87d577ee953069e731be140a66a9e7ec1d 8348117: The two-argument overload of SignatureHandlerLibrary::add is not used Reviewed-by: coleenp, shade ! src/hotspot/share/asm/codeBuffer.hpp ! src/hotspot/share/code/codeBlob.hpp ! src/hotspot/share/code/codeCache.hpp ! src/hotspot/share/interpreter/interpreter.hpp ! src/hotspot/share/interpreter/interpreterRuntime.cpp ! src/hotspot/share/interpreter/interpreterRuntime.hpp ! src/hotspot/share/interpreter/templateInterpreter.hpp ! src/hotspot/share/interpreter/templateInterpreterGenerator.cpp ! src/hotspot/share/runtime/arguments.hpp Changeset: 15d6469e Branch: premain Author: Richard Reingruber Date: 2025-01-22 07:02:40 +0000 URL: https://git.openjdk.org/leyden/commit/15d6469e8da635364c0ba83e425fd149c2d69495 8347817: Timeouts running test/jdk/java/lang/String/concat/HiddenClassUnloading.java with fastdebug builds Reviewed-by: clanger, mbaesken, mdoerr ! test/jdk/java/lang/String/concat/HiddenClassUnloading.java Changeset: d777218f Branch: premain Author: Matthias Baesken Date: 2025-01-22 08:01:01 +0000 URL: https://git.openjdk.org/leyden/commit/d777218f3879d99673f99aa7b149124684af508b 8346830: Simplify adlc build config for aix Reviewed-by: clanger, erikj, jwaters, jkern ! make/hotspot/gensrc/GensrcAdlc.gmk Changeset: 9b98cc0b Branch: premain Author: Stefan Karlsson Date: 2025-01-22 09:25:40 +0000 URL: https://git.openjdk.org/leyden/commit/9b98cc0ba7b626141c5f82df6ae34b0e2015b2ae 8348182: Remove DONT_USE_PRECOMPILED_HEADER Reviewed-by: erikj, shade, dholmes ! make/hotspot/lib/JvmFlags.gmk ! src/hotspot/share/precompiled/precompiled.hpp Changeset: fb438492 Branch: premain Author: Robbin Ehn Date: 2025-01-22 10:25:36 +0000 URL: https://git.openjdk.org/leyden/commit/fb438492275cd15390d26460cada2d5e1a49c159 8347794: RISC-V: Add Zfhmin - Float cleanup Reviewed-by: fyang, mli ! src/hotspot/cpu/riscv/assembler_riscv.hpp ! src/hotspot/cpu/riscv/assembler_riscv.inline.hpp ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/globals_riscv.hpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/riscv.ad ! src/hotspot/cpu/riscv/vm_version_riscv.hpp ! src/hotspot/os_cpu/linux_riscv/riscv_hwprobe.cpp Changeset: 46b24819 Branch: premain Author: Roger Riggs Committer: Jaikiran Pai Date: 2024-07-25 11:07:37 +0000 URL: https://git.openjdk.org/leyden/commit/46b248195880517a94947502dcf73c1d0e4d8227 8335428: Enhanced Building of Processes Reviewed-by: rhalade, djelinski ! src/java.base/windows/classes/java/lang/ProcessImpl.java Changeset: 496d06fb Branch: premain Author: Jayathirth D V Committer: Jaikiran Pai Date: 2024-08-07 04:03:55 +0000 URL: https://git.openjdk.org/leyden/commit/496d06fb5510737d2b8c4a1539d28e8fce7583ca 8336564: Enhance mask blit functionality redux Reviewed-by: rhalade, mschoene, psadhukhan, prr ! src/java.desktop/share/native/libawt/java2d/SurfaceData.h Changeset: fa83309e Branch: premain Author: Roger Riggs Committer: Jaikiran Pai Date: 2024-09-18 14:11:13 +0000 URL: https://git.openjdk.org/leyden/commit/fa83309e1070e158ab500414b758e054f1b71a19 8339180: Enhanced Building of Processes: Follow-on Issue Reviewed-by: naoto, djelinski ! src/java.base/windows/classes/java/lang/ProcessImpl.java Changeset: 5f6c8542 Branch: premain Author: Christian Hagedorn Committer: Jaikiran Pai Date: 2024-10-15 15:28:47 +0000 URL: https://git.openjdk.org/leyden/commit/5f6c85420a19d5dd9ccaf0a0c6e8f6502fab2aa7 8330045: Enhance array handling Co-authored-by: Christian Hagedorn Co-authored-by: Emanuel Peter Co-authored-by: Francisco Ferrari Bihurriet Co-authored-by: Martin Balao Reviewed-by: rhalade, ahgross, thartmann, epeter, adinn, roland ! src/hotspot/share/opto/subnode.cpp ! test/hotspot/jtreg/compiler/c2/gvn/TestBoolNodeGVN.java Changeset: 61873564 Branch: premain Author: Jaikiran Pai Date: 2025-01-22 11:28:24 +0000 URL: https://git.openjdk.org/leyden/commit/61873564a44d448feb2ae6e5dae93ab33a0aa719 Merge Reviewed-by: dfuchs Changeset: 16dcf15a Branch: premain Author: Emanuel Peter Date: 2025-01-22 12:02:39 +0000 URL: https://git.openjdk.org/leyden/commit/16dcf15a14c8a767d21a314aa579862e37f4a697 8348263: C2 SuperWord: TestMemorySegment.java has failing IR rules with AlignVector after JDK-8343685 Reviewed-by: chagedorn, thartmann ! test/hotspot/jtreg/compiler/loopopts/superword/TestMemorySegment.java Changeset: 16a1d0a7 Branch: premain Author: Jaikiran Pai Date: 2025-01-22 12:14:27 +0000 URL: https://git.openjdk.org/leyden/commit/16a1d0a7ff04acf70573d303141a41dadca08f7a 8348135: Fix couple of problem listing entries in test/hotspot/jtreg/ProblemList-Virtual.txt Reviewed-by: dholmes ! test/hotspot/jtreg/ProblemList-Virtual.txt Changeset: 86a8b48b Branch: premain Author: Coleen Phillimore Date: 2025-01-22 12:21:17 +0000 URL: https://git.openjdk.org/leyden/commit/86a8b48b6cc315bae8d385c5c3aafcc6bd401e59 8337458: Remove debugging code print_cpool_bytes Reviewed-by: dholmes, shade ! src/hotspot/share/oops/constantPool.cpp Changeset: 1c7641d4 Branch: premain Author: Roberto Casta?eda Lozano Date: 2025-01-22 12:29:53 +0000 URL: https://git.openjdk.org/leyden/commit/1c7641d44f9891b632bcd471edae252103ffb95c 8347563: C2: clean up ModRefBarrierSetC2 Reviewed-by: ayang, tschatzl, kvn ! src/hotspot/share/gc/shared/c2/cardTableBarrierSetC2.cpp ! src/hotspot/share/gc/shared/c2/cardTableBarrierSetC2.hpp ! src/hotspot/share/gc/shared/c2/modRefBarrierSetC2.cpp ! src/hotspot/share/gc/shared/c2/modRefBarrierSetC2.hpp Changeset: 893d00ac Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-22 15:11:41 +0000 URL: https://git.openjdk.org/leyden/commit/893d00ac7d118620b56ce147d447c6fca80bbe7b 8346388: Cannot use DllMain in libawt for static builds Reviewed-by: aivanov, prr ! src/java.desktop/windows/native/libawt/windows/awt_Toolkit.cpp Changeset: 25bb698e Branch: premain Author: Aleksey Shipilev Date: 2025-01-22 15:27:41 +0000 URL: https://git.openjdk.org/leyden/commit/25bb698eff9f5aadb54dd37a442e2e1bc555353a 8348195: More u2 conversion warnings after JDK-8347147 Reviewed-by: coleenp, dholmes ! src/hotspot/share/classfile/classFileParser.cpp ! src/hotspot/share/oops/fieldInfo.inline.hpp ! src/hotspot/share/oops/method.cpp Changeset: 17a408c4 Branch: premain Author: Johan Sj?len Date: 2025-01-22 16:35:59 +0000 URL: https://git.openjdk.org/leyden/commit/17a408c4b1534146cebdd18634aff56455d72f13 8348169: Destruct values on free in Treap Reviewed-by: cnorrbin, gziemski ! src/hotspot/share/nmt/nmtTreap.hpp ! test/hotspot/gtest/nmt/test_nmt_treap.cpp Changeset: b720517c Branch: premain Author: Daniel Fuchs Date: 2025-01-22 16:39:08 +0000 URL: https://git.openjdk.org/leyden/commit/b720517cb33c2119ec6ed85504bce321de748228 8348108: Race condition in AggregatePublisher.AggregateSubscription Reviewed-by: jpai ! src/java.net.http/share/classes/jdk/internal/net/http/RequestPublishers.java ! test/jdk/java/net/httpclient/AggregateRequestBodyTest.java Changeset: a36e166e Branch: premain Author: Zhengyu Gu Date: 2025-01-23 01:14:47 +0000 URL: https://git.openjdk.org/leyden/commit/a36e166ec9e6d6063e5fbbc48555e33c2fa38f3a 8348241: ZGC: Unnecessarily reinitialize ZFragmentationLimit's default value Reviewed-by: stefank ! src/hotspot/share/gc/z/zArguments.cpp Changeset: 8cf07358 Branch: premain Author: Jaikiran Pai Date: 2025-01-23 01:39:20 +0000 URL: https://git.openjdk.org/leyden/commit/8cf0735839727300e446828f4f4a8ef6354a8c7a 8348102: java/net/httpclient/HttpClientSNITest.java fails intermittently Reviewed-by: dfuchs, djelinski ! test/jdk/java/net/httpclient/HttpClientSNITest.java Changeset: 66513ddb Branch: premain Author: Casper Norrbin Committer: David Holmes Date: 2025-01-23 05:05:19 +0000 URL: https://git.openjdk.org/leyden/commit/66513ddbe97b56e3633abdd0922dd54ab42d5b28 8337997: MallocHeader description refers to non-existent NMT state "minimal" Reviewed-by: jsjolen, zgu ! src/hotspot/share/nmt/mallocHeader.hpp Changeset: e69e5b79 Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-23 07:51:11 +0000 URL: https://git.openjdk.org/leyden/commit/e69e5b7960002b35af8c7579e5be043e8c7d63fa 8348324: The failure handler cannot be build by JDK 24 due to restricted warning Reviewed-by: jwaters, jpai ! test/failure_handler/src/share/classes/jdk/test/failurehandler/jtreg/GatherProcessInfoTimeoutHandler.java Changeset: caa3c78f Branch: premain Author: Johny Jose Committer: Sean Coffey Date: 2025-01-23 08:26:43 +0000 URL: https://git.openjdk.org/leyden/commit/caa3c78f7837b1f561740184bd8f9cb671c467eb 8347965: (tz) Update Timezone Data to 2025a Reviewed-by: coffeys, naoto ! src/java.base/share/data/tzdata/VERSION ! src/java.base/share/data/tzdata/antarctica ! src/java.base/share/data/tzdata/asia ! src/java.base/share/data/tzdata/australasia ! src/java.base/share/data/tzdata/etcetera ! src/java.base/share/data/tzdata/europe ! src/java.base/share/data/tzdata/factory ! src/java.base/share/data/tzdata/leapseconds ! src/java.base/share/data/tzdata/northamerica ! src/java.base/share/data/tzdata/southamerica ! test/jdk/java/util/TimeZone/TimeZoneData/VERSION ! test/jdk/java/util/TimeZone/TimeZoneData/aliases.txt Changeset: 6032f6ea Branch: premain Author: Theo Weidmann Committer: Emanuel Peter Date: 2025-01-23 08:41:02 +0000 URL: https://git.openjdk.org/leyden/commit/6032f6ea04a5f0d52e0a375df764cb15273c8836 8341696: C2: Non-fluid StringBuilder pattern bails out in OptoStringConcat Reviewed-by: epeter ! src/hotspot/share/opto/stringopts.cpp ! src/hotspot/share/opto/stringopts.hpp + test/hotspot/jtreg/compiler/stringopts/TestFluidAndNonFluid.java + test/micro/org/openjdk/bench/vm/compiler/FluidSBBench.java Changeset: c882160d Branch: premain Author: Kevin Walls Date: 2025-01-23 09:28:51 +0000 URL: https://git.openjdk.org/leyden/commit/c882160d03cb281c8d64d363b3e42273543f2f7f 8344966: Remove the allowNonPublic MBean compatibility property Reviewed-by: amenkov, sspitsyn, dfuchs ! src/java.management/share/classes/com/sun/jmx/mbeanserver/Introspector.java ! src/java.management/share/classes/com/sun/jmx/mbeanserver/MBeanAnalyzer.java ! src/java.management/share/classes/javax/management/JMX.java - test/jdk/javax/management/MBeanServer/MBeanFallbackTest.java - test/jdk/javax/management/mxbean/MXBeanFallbackTest.java - test/jdk/javax/management/proxy/JMXProxyFallbackTest.java Changeset: 3069e912 Branch: premain Author: Kevin Walls Date: 2025-01-23 09:30:03 +0000 URL: https://git.openjdk.org/leyden/commit/3069e91232e33c1d8570378f93a54ac6a036f11f 8344969: Remove the jmx.mxbean.multiname compatibility property Reviewed-by: sspitsyn, amenkov, dfuchs ! src/java.management/share/classes/com/sun/jmx/mbeanserver/MXBeanLookup.java ! test/jdk/javax/management/mxbean/SameObjectTwoNamesTest.java Changeset: 337118da Branch: premain Author: Theo Weidmann Committer: Christian Hagedorn Date: 2025-01-23 10:16:33 +0000 URL: https://git.openjdk.org/leyden/commit/337118da6f7101639171ba7b9679f77f5bc70887 8348388: Incorrect copyright header in TestFluidAndNonFluid.java Reviewed-by: epeter, chagedorn ! test/hotspot/jtreg/compiler/stringopts/TestFluidAndNonFluid.java Changeset: 17df5151 Branch: premain Author: Alexey Ivanov Date: 2025-01-23 10:50:39 +0000 URL: https://git.openjdk.org/leyden/commit/17df51516aadf5ade73cf8d05c1be09772852b96 8348303: Remove repeated 'a' from ListSelectionEvent Reviewed-by: azvegint, honkar, dmarkov, prr, kizune ! src/java.desktop/share/classes/javax/swing/event/ListSelectionEvent.java Changeset: 89bfcb8d Branch: premain Author: Alexey Ivanov Date: 2025-01-23 10:51:53 +0000 URL: https://git.openjdk.org/leyden/commit/89bfcb8db0877b89e9ac41f8330eb0a692ed77ae 8348308: Make fields of ListSelectionEvent final Reviewed-by: honkar, azvegint ! src/java.desktop/share/classes/javax/swing/event/ListSelectionEvent.java Changeset: 119899bc Branch: premain Author: Kevin Walls Date: 2025-01-23 11:06:11 +0000 URL: https://git.openjdk.org/leyden/commit/119899bc69a5936d2e38065d8a05705c6d37e66f 8345048: Remove the jmx.extend.open.types compatibility property Reviewed-by: cjplummer, amenkov, sspitsyn ! src/java.management/share/classes/javax/management/openmbean/OpenType.java Changeset: 8b46db0c Branch: premain Author: Kevin Walls Date: 2025-01-23 11:39:38 +0000 URL: https://git.openjdk.org/leyden/commit/8b46db0c0d71dd7c76078028fa2600dd0cc08387 8345045: Remove the jmx.remote.x.buffer.size JMX notification property Reviewed-by: amenkov, sspitsyn ! src/java.management/share/classes/com/sun/jmx/remote/util/EnvHelp.java ! test/jdk/javax/management/remote/mandatory/notif/NotifBufferSizePropertyNameTest.java Changeset: c00557f8 Branch: premain Author: Kevin Walls Date: 2025-01-23 11:41:16 +0000 URL: https://git.openjdk.org/leyden/commit/c00557f8f53ff729c8a1857a4ffcc585d3f8c6c4 8345049: Remove the jmx.tabular.data.hash.map compatibility property Reviewed-by: cjplummer, sspitsyn, dfuchs ! src/java.management/share/classes/javax/management/openmbean/TabularDataSupport.java ! test/jdk/javax/management/openmbean/TabularDataOrderTest.java Changeset: 5cc690d3 Branch: premain Author: Serhiy Sachkov Committer: Mark Sheppard Date: 2025-01-23 13:40:20 +0000 URL: https://git.openjdk.org/leyden/commit/5cc690d31ee43f2ea0171cc091ce448144c57766 8347994: Add additional diagnostics to macOS failure handler to assist with diagnosing MCast test failures Reviewed-by: dfuchs ! test/failure_handler/src/share/conf/mac.properties Changeset: 7460a0af Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-23 14:47:14 +0000 URL: https://git.openjdk.org/leyden/commit/7460a0aff4b3913d74a9a7802a687c1a1cf80dbc 8348392: Make claims "other matches are possible" even when that is not true Reviewed-by: erikj ! make/InitSupport.gmk Changeset: 44e5ccaf Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-23 14:50:03 +0000 URL: https://git.openjdk.org/leyden/commit/44e5ccaf866a50f1c79c02ab87a308f1a3a91f90 8348391: Keep case if possible for TOPDIR Reviewed-by: erikj ! make/autoconf/basic.m4 ! make/autoconf/util_paths.m4 Changeset: cba0f786 Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-23 14:51:32 +0000 URL: https://git.openjdk.org/leyden/commit/cba0f786fc65a5bfbc6e921efd1f191b63b30ba5 8348387: Add fixpath if needed for user-supplied tools Reviewed-by: erikj ! make/autoconf/util_paths.m4 Changeset: 605b53e4 Branch: premain Author: Alexey Ivanov Date: 2025-01-23 15:18:38 +0000 URL: https://git.openjdk.org/leyden/commit/605b53e4f8857c58a72fa361f8787c563d6dab90 8348299: Update List/ItemEventTest/ItemEventTest.java Use thread-safe StringBuffer to track selecting/deselecting items. Use auto waitForIdle for all events. Log handleEvent and ItemListener. Take screenshot of the list on failure; Optionally take screenshot after each mouse press+release. Reviewed-by: azvegint, prr, kizune ! test/jdk/java/awt/List/ItemEventTest/ItemEventTest.java Changeset: 59e75093 Branch: premain Author: Aleksey Shipilev Date: 2025-01-23 16:49:00 +0000 URL: https://git.openjdk.org/leyden/commit/59e750931c43fa035650bb295c8c9f16fbe82df0 8348301: Remove unused Reference.waitForReferenceProcessing break-ins in tests Reviewed-by: alanb ! test/jdk/sun/security/provider/FileInputStreamPool/FileInputStreamPoolTest.java Changeset: d9d2e19f Branch: premain Author: Liam Miller-Cushon Date: 2025-01-23 17:24:33 +0000 URL: https://git.openjdk.org/leyden/commit/d9d2e19f923217a6831a8697c62ebeef0cc5d3b8 8348365: Bad format string in CLDRDisplayNamesTest Reviewed-by: shade, naoto ! test/jdk/java/util/TimeZone/CLDRDisplayNamesTest.java Changeset: 3ebf8899 Branch: premain Author: Mikael Vidstedt Date: 2025-01-23 18:37:37 +0000 URL: https://git.openjdk.org/leyden/commit/3ebf88996f35f397f4396e3d139b9251048de751 8348327: Incorrect march flag when building libsleef/vector_math_neon.c Reviewed-by: erikj, vlivanov, shade ! make/modules/jdk.incubator.vector/Lib.gmk Changeset: 356e2a8f Branch: premain Author: Mikhail Yankelevich Committer: Rajan Halade Date: 2025-01-23 18:59:21 +0000 URL: https://git.openjdk.org/leyden/commit/356e2a8f48679ea31f1483cf60803818934fc53f 8348406: Remove tests GrantAllPermToExtWhenNoPolicy and PrincipalExpansionError from problem list Reviewed-by: rhalade ! test/jdk/ProblemList.txt Changeset: 48ece072 Branch: premain Author: Rajat Mahajan Date: 2025-01-23 20:52:45 +0000 URL: https://git.openjdk.org/leyden/commit/48ece0721489c1b357aaa81e89fe59f486079d15 8282862: AwtWindow::SetIconData leaks old icon handles if an exception is detected Reviewed-by: aivanov, dmarkov, prr, honkar, azvegint ! src/java.desktop/windows/native/libawt/windows/awt_Window.cpp Changeset: 7f16a087 Branch: premain Author: Ioi Lam Date: 2025-01-23 22:02:48 +0000 URL: https://git.openjdk.org/leyden/commit/7f16a0875ced8669b9d2131c67496a66e74ea36f 8348240: Remove SystemDictionaryShared::lookup_super_for_unregistered_class() Reviewed-by: ccheung, coleenp ! src/hotspot/share/cds/classListParser.cpp ! src/hotspot/share/cds/classListParser.hpp ! src/hotspot/share/cds/unregisteredClasses.cpp ! src/hotspot/share/cds/unregisteredClasses.hpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/vmClassMacros.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/java.base/share/classes/jdk/internal/misc/CDS.java ! test/hotspot/jtreg/runtime/cds/appcds/customLoader/ClassListFormatE.java Changeset: 471d63c9 Branch: premain Author: Joe Wang Date: 2025-01-24 00:29:49 +0000 URL: https://git.openjdk.org/leyden/commit/471d63c91f9fdc9468cb4d483a242511bad026da 8343609: Broken links in java.xml Reviewed-by: naoto, lancea, iris ! src/java.xml/share/classes/javax/xml/catalog/Catalog.java ! src/java.xml/share/classes/javax/xml/catalog/CatalogFeatures.java ! src/java.xml/share/classes/javax/xml/catalog/CatalogManager.java ! src/java.xml/share/classes/javax/xml/catalog/CatalogResolver.java ! src/java.xml/share/classes/javax/xml/catalog/Normalizer.java ! src/java.xml/share/classes/javax/xml/catalog/package-info.java ! src/java.xml/share/classes/javax/xml/namespace/QName.java Changeset: 416d4694 Branch: premain Author: Alexander Zvegintsev Date: 2025-01-24 05:41:12 +0000 URL: https://git.openjdk.org/leyden/commit/416d46947ca926a31fbf9e97d0e7c320063ecfb2 8347008: beancontext package spec does not clearly explain why the API is deprecated Reviewed-by: aivanov, prr ! src/java.desktop/share/classes/java/beans/beancontext/package-info.java Changeset: 50ca4504 Branch: premain Author: anass baya Committer: Alexander Zvegintsev Date: 2025-01-24 07:01:03 +0000 URL: https://git.openjdk.org/leyden/commit/50ca450417a5da7d4c6c08154515b8407bf656e8 8340784: Remove PassFailJFrame constructor with screenshots Reviewed-by: aivanov, azvegint ! test/jdk/java/awt/regtesthelpers/PassFailJFrame.java Changeset: 2daafe49 Branch: premain Author: Adam Sotona Date: 2025-01-24 07:25:08 +0000 URL: https://git.openjdk.org/leyden/commit/2daafe49c7883d224b6dc45d934cfde9101edaa1 8348283: java.lang.classfile.components.snippets.PackageSnippets shipped in java.base.jmod Reviewed-by: liach ! src/java.base/share/classes/jdk/internal/classfile/components/snippet-files/PackageSnippets.java Changeset: 0395593a Branch: premain Author: Jan Lahoda Date: 2025-01-24 08:12:50 +0000 URL: https://git.openjdk.org/leyden/commit/0395593a8a1c01a87ae36552c0f2cc9c67e8bbd8 8346751: Internal java compiler error with type annotations in constants expression in constant fields Reviewed-by: vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Flags.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Symbol.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/MemberEnter.java + test/langtools/tools/javac/annotations/typeAnnotations/TypeAnnotationsInConstantInit.java Changeset: a09f06d5 Branch: premain Author: Kevin Walls Date: 2025-01-24 08:39:37 +0000 URL: https://git.openjdk.org/leyden/commit/a09f06d538075bcdd7cce6da9c3bf9549ce7d543 8348265: RMIConnectionImpl: Remove Subject.callAs on MarshalledObject Reviewed-by: rriggs ! src/java.management.rmi/share/classes/javax/management/remote/rmi/RMIConnectionImpl.java Changeset: 0df9dcb6 Branch: premain Author: Stefan Karlsson Date: 2025-01-24 09:23:29 +0000 URL: https://git.openjdk.org/leyden/commit/0df9dcb6aa7c31511ca3137da246962faca818a3 8346572: Check is_reserved() before using ReservedSpace instances Reviewed-by: tschatzl, wkemper, ayang, ysr ! src/hotspot/share/gc/parallel/parMarkBitMap.cpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/serial/serialBlockOffsetTable.cpp ! src/hotspot/share/gc/shared/cardTable.cpp ! src/hotspot/share/gc/shenandoah/shenandoahCardTable.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/memory/virtualspace.cpp ! src/hotspot/share/prims/whitebox.cpp ! test/hotspot/gtest/memory/test_virtualspace.cpp Changeset: 4a375e5b Branch: premain Author: Martin Doerr Date: 2025-01-24 09:50:06 +0000 URL: https://git.openjdk.org/leyden/commit/4a375e5b8899aa684b8a921e198203e76794f709 8344232: [PPC64] secondary_super_cache does not scale well: C1 and interpreter Reviewed-by: rrich, amitkumar ! src/hotspot/cpu/ppc/assembler_ppc.hpp ! src/hotspot/cpu/ppc/assembler_ppc.inline.hpp ! src/hotspot/cpu/ppc/c1_Runtime1_ppc.cpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.cpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.hpp ! src/hotspot/cpu/ppc/ppc.ad ! src/hotspot/cpu/ppc/stubGenerator_ppc.cpp Changeset: 5a0bdd04 Branch: premain Author: Andrew Haley Date: 2025-01-24 10:38:43 +0000 URL: https://git.openjdk.org/leyden/commit/5a0bdd04e0d62bbdd01373510cb1d06c586e69b3 8346890: AArch64: Type profile counters generate suboptimal code Reviewed-by: shade, adinn ! src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.hpp Changeset: e20bd018 Branch: premain Author: Sean Coffey Date: 2025-01-24 10:40:36 +0000 URL: https://git.openjdk.org/leyden/commit/e20bd018c4046870d0cf632bb8e5440cb9f5c3c2 8344361: Restore null return for invalid services from legacy providers Reviewed-by: valeriep ! src/java.base/share/classes/java/security/Provider.java + test/jdk/java/security/Provider/InvalidServiceTest.java Changeset: 9c55e253 Branch: premain Author: Robbin Ehn Date: 2025-01-24 11:46:54 +0000 URL: https://git.openjdk.org/leyden/commit/9c55e2538c5c7374d6f4589d8bdd45ee205276f1 8347981: RISC-V: Add Zfa zli imm loads Reviewed-by: fyang, luhenry ! src/hotspot/cpu/riscv/assembler_riscv.hpp ! src/hotspot/cpu/riscv/c1_LIRAssembler_riscv.cpp ! src/hotspot/cpu/riscv/globals_riscv.hpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.hpp ! src/hotspot/cpu/riscv/riscv.ad ! src/hotspot/cpu/riscv/vm_version_riscv.hpp Changeset: c5a69b62 Branch: premain Author: Guoxiong Li Date: 2025-01-24 12:47:25 +0000 URL: https://git.openjdk.org/leyden/commit/c5a69b620a73bb05b96b79d9d9e03cc71822862e 8331723: Serial: Remove the unused parameter of the method SerialHeap::gc_prologue Co-authored-by: nanxiaotao Reviewed-by: ayang ! src/hotspot/share/gc/serial/serialHeap.cpp ! src/hotspot/share/gc/serial/serialHeap.hpp Changeset: 9768f60a Branch: premain Author: Eirik Bj?rsn?s Date: 2025-01-24 13:00:28 +0000 URL: https://git.openjdk.org/leyden/commit/9768f60a945db277ded5e37ecba9ec34421d9968 8345249: Apply some conservative cleanups in FileURLConnection Reviewed-by: jpai, djelinski ! src/java.base/share/classes/sun/net/www/protocol/file/FileURLConnection.java Changeset: 56a18779 Branch: premain Author: Andrey Turbanov Date: 2025-01-24 14:06:08 +0000 URL: https://git.openjdk.org/leyden/commit/56a187798991cb6dede62ac166cbdca7a654cf7f 8348170: Unnecessary Hashtable usage in CSS.styleConstantToCssMap Reviewed-by: azvegint, aivanov ! src/java.desktop/share/classes/javax/swing/text/html/CSS.java Changeset: 909cef51 Branch: premain Author: Sonia Zaldana Calles Date: 2025-01-24 14:36:05 +0000 URL: https://git.openjdk.org/leyden/commit/909cef5198e91f56e4c76c2cf86048583791f3ab 8339891: Several sun/security/ssl/SSLSessionImpl/* tests override test.java.opts Reviewed-by: lmesnik ! test/jdk/sun/security/ssl/SSLEngineImpl/SSLEngineKeyLimit.java ! test/jdk/sun/security/ssl/SSLSessionImpl/MultiNSTClient.java ! test/jdk/sun/security/ssl/SSLSessionImpl/MultiNSTNoSessionCreation.java ! test/jdk/sun/security/ssl/SSLSessionImpl/MultiNSTParallel.java ! test/jdk/sun/security/ssl/SSLSessionImpl/MultiNSTSequence.java ! test/jdk/sun/security/ssl/SSLSessionImpl/ResumptionUpdateBoundValues.java ! test/jdk/sun/security/ssl/SSLSocketImpl/SSLSocketKeyLimit.java Changeset: 76f792b5 Branch: premain Author: Volker Simonis Date: 2025-01-24 15:37:47 +0000 URL: https://git.openjdk.org/leyden/commit/76f792b55263faf883e54cb879d8609f87164e51 8348203: [JVMCI] Make eager JVMCI initialization observable in the debugger Reviewed-by: dnsimon ! src/hotspot/share/runtime/threads.cpp Changeset: 8e8f8000 Branch: premain Author: Eirik Bj?rsn?s Date: 2025-01-24 19:29:05 +0000 URL: https://git.openjdk.org/leyden/commit/8e8f800071851f479f9e8b493bc38c0a38165bab 8344943: Mark not subclassable classes final in java.base exported classes Reviewed-by: weijun, liach, djelinski ! src/java.base/share/classes/java/io/OptionalDataException.java ! src/java.base/share/classes/java/lang/Package.java ! src/java.base/share/classes/java/lang/Runtime.java ! src/java.base/share/classes/java/lang/constant/DynamicCallSiteDesc.java ! src/java.base/share/classes/java/lang/invoke/MethodHandleProxies.java ! src/java.base/share/classes/java/lang/invoke/MethodHandles.java ! src/java.base/share/classes/java/lang/module/ModuleDescriptor.java ! src/java.base/share/classes/java/lang/reflect/Modifier.java ! src/java.base/share/classes/java/lang/runtime/ObjectMethods.java ! src/java.base/share/classes/java/lang/runtime/SwitchBootstraps.java ! src/java.base/share/classes/java/net/InterfaceAddress.java ! src/java.base/share/classes/java/net/URLDecoder.java ! src/java.base/share/classes/java/net/URLEncoder.java ! src/java.base/share/classes/java/nio/charset/CoderResult.java ! src/java.base/share/classes/java/nio/charset/CodingErrorAction.java ! src/java.base/share/classes/java/security/DrbgParameters.java ! src/java.base/share/classes/java/util/Base64.java ! src/java.base/share/classes/java/util/Collections.java ! src/java.base/share/classes/java/util/FormattableFlags.java ! src/java.base/share/classes/java/util/concurrent/Executors.java ! src/java.base/share/classes/java/util/concurrent/locks/LockSupport.java ! test/jdk/jdk/internal/reflect/CallerSensitive/CheckCSMs.java Changeset: bef5f565 Branch: premain Author: Andrey Turbanov Date: 2025-01-24 20:13:17 +0000 URL: https://git.openjdk.org/leyden/commit/bef5f56544ded9307e5f1095bd42ae46fdc2adda 8291027: Some of TimeZone methods marked 'synchronized' unnecessarily Reviewed-by: liach, naoto, jlu ! src/java.base/share/classes/java/util/TimeZone.java Changeset: dec93675 Branch: premain Author: Justin Lu Date: 2025-01-24 21:43:19 +0000 URL: https://git.openjdk.org/leyden/commit/dec93675ab3e4c271b14a254df75dc838f1346ea 8347498: JDK 24 RDP2 L10n resource files update Reviewed-by: sgehwolf, dnguyen, naoto, joehw, asemenyuk ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/res/XSLTErrorResources_de.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/res/XSLTErrorResources_ja.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/res/XSLTErrorResources_zh_CN.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMessages_de.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMessages_ja.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMessages_zh_CN.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/runtime/ErrorMessages_de.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/runtime/ErrorMessages_ja.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/runtime/ErrorMessages_zh_CN.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler_de.properties ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler_ja.properties ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler_zh_CN.properties ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/launcher_de.properties ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/launcher_ja.properties ! src/jdk.compiler/share/classes/com/sun/tools/javac/resources/launcher_zh_CN.properties ! src/jdk.jlink/share/classes/jdk/tools/jlink/resources/jlink_de.properties ! src/jdk.jlink/share/classes/jdk/tools/jlink/resources/jlink_ja.properties ! src/jdk.jlink/share/classes/jdk/tools/jlink/resources/jlink_zh_CN.properties ! src/jdk.jlink/share/classes/jdk/tools/jmod/resources/jmod_de.properties ! src/jdk.jpackage/share/classes/jdk/jpackage/internal/resources/HelpResources_de.properties ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/WinResources_de.properties ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/WinResources_ja.properties ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/WinResources_zh_CN.properties ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/resources/l10n_de.properties ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/resources/l10n_ja.properties ! src/jdk.jshell/share/classes/jdk/internal/jshell/tool/resources/l10n_zh_CN.properties Changeset: 907350e9 Branch: premain Author: Mark Powers Date: 2025-01-24 23:05:34 +0000 URL: https://git.openjdk.org/leyden/commit/907350e9e8e9b66365e9eaa3ae89ddc55cf9731f 8346587: Distrust TLS server certificates anchored by Camerfirma Root CAs Reviewed-by: mullan ! src/java.base/share/classes/sun/security/validator/CADistrustPolicy.java + src/java.base/share/classes/sun/security/validator/CamerfirmaTLSPolicy.java ! src/java.base/share/conf/security/java.security + test/jdk/sun/security/ssl/X509TrustManagerImpl/distrust/Camerfirma.java ! test/jdk/sun/security/ssl/X509TrustManagerImpl/distrust/Distrust.java + test/jdk/sun/security/ssl/X509TrustManagerImpl/distrust/chains/camerfirma/camerfirmachambersca-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/distrust/chains/camerfirma/camerfirmachamberscommerceca-chain.pem + test/jdk/sun/security/ssl/X509TrustManagerImpl/distrust/chains/camerfirma/camerfirmachambersignca-chain.pem Changeset: f8e81d23 Branch: premain Author: Jamil Nimeh Date: 2025-01-24 23:06:57 +0000 URL: https://git.openjdk.org/leyden/commit/f8e81d23393cbc04557e3975edd8898901dd6d26 8347506: Compatible OCSP readtimeout property with OCSP timeout Reviewed-by: mullan, hchao ! src/java.base/share/classes/sun/security/provider/certpath/OCSP.java + test/jdk/sun/security/provider/certpath/OCSP/OCSPReadTimeoutDefault.java Changeset: 7c0985fc Branch: premain Author: William Kemper Date: 2025-01-24 23:34:57 +0000 URL: https://git.openjdk.org/leyden/commit/7c0985fc32ec5419f7b409248385c5ca80f1093f 8348420: Shenandoah: Check is_reserved before using ReservedSpace instances Reviewed-by: ysr ! src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp Changeset: f446cefe Branch: premain Author: Shaojin Wen Date: 2025-01-25 03:12:56 +0000 URL: https://git.openjdk.org/leyden/commit/f446cefee0715da6532b68f65a5a15775e20945d 8343962: [REDO] Move getChars to DecimalDigits Reviewed-by: redestad, rgiulietti ! src/java.base/share/classes/java/lang/AbstractStringBuilder.java ! src/java.base/share/classes/java/lang/Integer.java ! src/java.base/share/classes/java/lang/Long.java ! src/java.base/share/classes/java/lang/StringConcatHelper.java ! src/java.base/share/classes/java/lang/StringLatin1.java ! src/java.base/share/classes/java/lang/StringUTF16.java ! src/java.base/share/classes/java/lang/System.java ! src/java.base/share/classes/java/math/BigDecimal.java ! src/java.base/share/classes/jdk/internal/access/JavaLangAccess.java ! src/java.base/share/classes/jdk/internal/util/DecimalDigits.java ! test/hotspot/jtreg/compiler/patches/java.base/java/lang/Helper.java ! test/micro/org/openjdk/bench/java/lang/StringBuilders.java Changeset: 1d2eb2fb Branch: premain Author: Alan Bateman Date: 2025-01-25 07:25:24 +0000 URL: https://git.openjdk.org/leyden/commit/1d2eb2fbaea700fc77b644b5eb5a8a7c40ede108 8299504: Resolve `uses` and `provides` at run time if the service is optional and missing Co-authored-by: Alan Bateman Co-authored-by: Alex Buckley Reviewed-by: sundar ! src/java.base/share/classes/java/lang/module/Configuration.java ! src/java.base/share/classes/java/lang/module/Resolver.java ! src/java.base/share/classes/java/lang/module/package-info.java ! test/jdk/java/lang/module/ConfigurationTest.java Changeset: 5431668c Branch: premain Author: Archie Cobbs Date: 2025-01-25 18:02:18 +0000 URL: https://git.openjdk.org/leyden/commit/5431668cb92a8ef2ccfe1059db1cde0e5d98adce 8348212: Need to add warn() step to JavacTaskImpl after JDK-8344148 Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/api/JavacTaskImpl.java + test/langtools/tools/javac/api/TestJavacTaskWithWarning.java Changeset: 99002e4f Branch: premain Author: Leonid Mesnik Date: 2025-01-25 18:59:20 +0000 URL: https://git.openjdk.org/leyden/commit/99002e4f9d421d08d912187a1f01809d85820427 8318098: Update jfr tests to replace keyword jfr with vm.flagless Reviewed-by: mgronlun ! test/jdk/TEST.ROOT ! test/jdk/jdk/jfr/api/consumer/TestChunkInputStreamAvailable.java ! test/jdk/jdk/jfr/api/consumer/TestChunkInputStreamBulkRead.java ! test/jdk/jdk/jfr/api/consumer/TestFieldAccess.java ! test/jdk/jdk/jfr/api/consumer/TestGetStackTrace.java ! test/jdk/jdk/jfr/api/consumer/TestHiddenMethod.java ! test/jdk/jdk/jfr/api/consumer/TestMethodGetModifiers.java ! test/jdk/jdk/jfr/api/consumer/TestReadTwice.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedClass.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedClassLoader.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedEvent.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedEventGetThread.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedEventGetThreadOther.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedFrame.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedFrameType.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedFullStackTrace.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedInstantEventTimestamp.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedMethodDescriptor.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedObject.java ! test/jdk/jdk/jfr/api/consumer/TestRecordedThreadGroupParent.java ! test/jdk/jdk/jfr/api/consumer/TestRecordingFile.java ! test/jdk/jdk/jfr/api/consumer/TestRecordingFileReadEventEof.java ! test/jdk/jdk/jfr/api/consumer/TestRecordingFileSanitization.java ! test/jdk/jdk/jfr/api/consumer/TestRecordingFileWrite.java ! test/jdk/jdk/jfr/api/consumer/TestRecordingInternals.java ! test/jdk/jdk/jfr/api/consumer/TestSingleRecordedEvent.java ! test/jdk/jdk/jfr/api/consumer/TestToString.java ! test/jdk/jdk/jfr/api/consumer/TestValueDescriptorRecorded.java ! test/jdk/jdk/jfr/api/consumer/filestream/TestMultipleChunk.java ! test/jdk/jdk/jfr/api/consumer/filestream/TestOrdered.java ! test/jdk/jdk/jfr/api/consumer/filestream/TestReuse.java ! test/jdk/jdk/jfr/api/consumer/log/TestContent.java ! test/jdk/jdk/jfr/api/consumer/log/TestDiskOnOff.java ! test/jdk/jdk/jfr/api/consumer/log/TestDynamicStart.java ! test/jdk/jdk/jfr/api/consumer/log/TestMemoryDiskTransition.java ! test/jdk/jdk/jfr/api/consumer/log/TestMemoryOnly.java ! test/jdk/jdk/jfr/api/consumer/log/TestSystemEvents.java ! test/jdk/jdk/jfr/api/consumer/log/TestTruncation.java ! test/jdk/jdk/jfr/api/consumer/log/TestUserEvents.java ! test/jdk/jdk/jfr/api/consumer/log/TestVerbosity.java ! test/jdk/jdk/jfr/api/consumer/log/TestWithStreaming.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestAwaitTermination.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestBasics.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestClose.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestConstructor.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestDisable.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestDump.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestEnable.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestMaxAge.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestOnClose.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestOnErrorAsync.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestOnErrorSync.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestOnEvent.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestOnFlush.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestOnMetadata.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestRecordingName.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestRecursive.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestRemove.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestSetEndTime.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestSetMaxAge.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestSetMaxSize.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestSetSettings.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestSetStartTime.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestStart.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestStartAsync.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestStop.java ! test/jdk/jdk/jfr/api/consumer/recordingstream/TestStoppedRecording.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestBaseRepositoryAfterStart.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestBaseRepositoryBeforeStart.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestBaseRepositoryLastModified.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestBaseRepositoryMultipleProcesses.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestChunkGap.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestCrossProcessStreaming.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestEmptyChunks.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestEnableEvents.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestEventRegistration.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestFilledChunks.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestFiltering.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestInProcessMigration.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestJVMCrash.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestJVMExit.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestLatestEvent.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestOutOfProcessMigration.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestRecordingBefore.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestRemovedChunks.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestRepositoryProperty.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestStartMultiChunk.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestStartSingleChunk.java ! test/jdk/jdk/jfr/api/consumer/streaming/TestUnstarted.java ! test/jdk/jdk/jfr/api/event/TestAbstractEvent.java ! test/jdk/jdk/jfr/api/event/TestBeginEnd.java ! test/jdk/jdk/jfr/api/event/TestClinitRegistration.java ! test/jdk/jdk/jfr/api/event/TestClonedEvent.java ! test/jdk/jdk/jfr/api/event/TestEnableDisable.java ! test/jdk/jdk/jfr/api/event/TestEventDuration.java ! test/jdk/jdk/jfr/api/event/TestEventFactory.java ! test/jdk/jdk/jfr/api/event/TestEventFactoryRegisterTwice.java ! test/jdk/jdk/jfr/api/event/TestEventFactoryRegistration.java ! test/jdk/jdk/jfr/api/event/TestExtends.java ! test/jdk/jdk/jfr/api/event/TestGetDuration.java ! test/jdk/jdk/jfr/api/event/TestIsEnabled.java ! test/jdk/jdk/jfr/api/event/TestIsEnabledMultiple.java ! test/jdk/jdk/jfr/api/event/TestOwnCommit.java ! test/jdk/jdk/jfr/api/event/TestShouldCommit.java ! test/jdk/jdk/jfr/api/event/TestStaticEnable.java ! test/jdk/jdk/jfr/api/event/dynamic/TestDynamicAnnotations.java ! test/jdk/jdk/jfr/api/event/dynamic/TestEventFactory.java ! test/jdk/jdk/jfr/api/flightrecorder/TestAddListenerTwice.java ! test/jdk/jdk/jfr/api/flightrecorder/TestAddPeriodicEvent.java ! test/jdk/jdk/jfr/api/flightrecorder/TestFlightRecorderListenerRecorderInitialized.java ! test/jdk/jdk/jfr/api/flightrecorder/TestGetEventTypes.java ! test/jdk/jdk/jfr/api/flightrecorder/TestGetPlatformRecorder.java ! test/jdk/jdk/jfr/api/flightrecorder/TestGetRecordings.java ! test/jdk/jdk/jfr/api/flightrecorder/TestGetSettings.java ! test/jdk/jdk/jfr/api/flightrecorder/TestIsAvailable.java ! test/jdk/jdk/jfr/api/flightrecorder/TestIsInitialized.java ! test/jdk/jdk/jfr/api/flightrecorder/TestListener.java ! test/jdk/jdk/jfr/api/flightrecorder/TestListenerNull.java ! test/jdk/jdk/jfr/api/flightrecorder/TestPeriodicEventsSameHook.java ! test/jdk/jdk/jfr/api/flightrecorder/TestRecorderInitializationCallback.java ! test/jdk/jdk/jfr/api/flightrecorder/TestRegisterUnregisterEvent.java ! test/jdk/jdk/jfr/api/flightrecorder/TestSettingsControl.java ! test/jdk/jdk/jfr/api/flightrecorder/TestSnapshot.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestCategory.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestContentType.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestDescription.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestDynamicAnnotation.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestEnabled.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestExperimental.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestFieldAnnotations.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestFormatMissingValue.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestHasValue.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestInheritedAnnotations.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestLabel.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestMetadata.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestName.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestPeriod.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestRegistered.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestRegisteredFalseAndRunning.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestRelational.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestSimpleMetadataEvent.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestStackFilter.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestStackTrace.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestThreshold.java ! test/jdk/jdk/jfr/api/metadata/annotations/TestTypesIdentical.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestGetAnnotation.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestGetAnnotationElements.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestGetAnnotations.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestGetCategory.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestGetDefaultValues.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestGetDescription.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestGetEventType.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestGetField.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestGetFields.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestGetSettings.java ! test/jdk/jdk/jfr/api/metadata/eventtype/TestUnloadingEventClass.java ! test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestDefaultValue.java ! test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetAnnotation.java ! test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetAnnotationElement.java ! test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetContentType.java ! test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetDescription.java ! test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetLabel.java ! test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetName.java ! test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetTypeId.java ! test/jdk/jdk/jfr/api/metadata/settingdescriptor/TestGetTypeName.java ! test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestClasses.java ! test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestConstructor.java ! test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestGetAnnotations.java ! test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestGetFields.java ! test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestIsArray.java ! test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestSimpleTypes.java ! test/jdk/jdk/jfr/api/metadata/valuedescriptor/TestValueDescriptorContentType.java ! test/jdk/jdk/jfr/api/recorder/TestRecorderInitialized.java ! test/jdk/jdk/jfr/api/recorder/TestRecorderListener.java ! test/jdk/jdk/jfr/api/recorder/TestRecorderListenerWithDump.java ! test/jdk/jdk/jfr/api/recorder/TestStartStopRecording.java ! test/jdk/jdk/jfr/api/recording/destination/TestDestFileExist.java ! test/jdk/jdk/jfr/api/recording/destination/TestDestFileReadOnly.java ! test/jdk/jdk/jfr/api/recording/destination/TestDestInvalid.java ! test/jdk/jdk/jfr/api/recording/destination/TestDestLongPath.java ! test/jdk/jdk/jfr/api/recording/destination/TestDestMultiple.java ! test/jdk/jdk/jfr/api/recording/destination/TestDestReadOnly.java ! test/jdk/jdk/jfr/api/recording/destination/TestDestState.java ! test/jdk/jdk/jfr/api/recording/destination/TestDestToDiskFalse.java ! test/jdk/jdk/jfr/api/recording/destination/TestDestToDiskTrue.java ! test/jdk/jdk/jfr/api/recording/destination/TestDestWithDuration.java ! test/jdk/jdk/jfr/api/recording/dump/TestDump.java ! test/jdk/jdk/jfr/api/recording/dump/TestDumpDevNull.java ! test/jdk/jdk/jfr/api/recording/dump/TestDumpInvalid.java ! test/jdk/jdk/jfr/api/recording/dump/TestDumpLongPath.java ! test/jdk/jdk/jfr/api/recording/dump/TestDumpMultiple.java ! test/jdk/jdk/jfr/api/recording/dump/TestDumpReadOnly.java ! test/jdk/jdk/jfr/api/recording/dump/TestDumpState.java ! test/jdk/jdk/jfr/api/recording/event/TestChunkPeriod.java ! test/jdk/jdk/jfr/api/recording/event/TestEnableClass.java ! test/jdk/jdk/jfr/api/recording/event/TestEnableName.java ! test/jdk/jdk/jfr/api/recording/event/TestEventTime.java ! test/jdk/jdk/jfr/api/recording/event/TestLoadEventAfterStart.java ! test/jdk/jdk/jfr/api/recording/event/TestPeriod.java ! test/jdk/jdk/jfr/api/recording/event/TestReEnableClass.java ! test/jdk/jdk/jfr/api/recording/event/TestReEnableMultiple.java ! test/jdk/jdk/jfr/api/recording/event/TestReEnableName.java ! test/jdk/jdk/jfr/api/recording/event/TestRecordingEnableDisable.java ! test/jdk/jdk/jfr/api/recording/event/TestShortPeriod.java ! test/jdk/jdk/jfr/api/recording/event/TestThreshold.java ! test/jdk/jdk/jfr/api/recording/misc/TestGetId.java ! test/jdk/jdk/jfr/api/recording/misc/TestGetSize.java ! test/jdk/jdk/jfr/api/recording/misc/TestGetSizeToMem.java ! test/jdk/jdk/jfr/api/recording/misc/TestGetStream.java ! test/jdk/jdk/jfr/api/recording/misc/TestRecordingBase.java ! test/jdk/jdk/jfr/api/recording/misc/TestRecordingCopy.java ! test/jdk/jdk/jfr/api/recording/options/TestDuration.java ! test/jdk/jdk/jfr/api/recording/options/TestName.java ! test/jdk/jdk/jfr/api/recording/settings/TestConfigurationGetContents.java ! test/jdk/jdk/jfr/api/recording/settings/TestCreateConfigFromPath.java ! test/jdk/jdk/jfr/api/recording/settings/TestCreateConfigFromReader.java ! test/jdk/jdk/jfr/api/recording/settings/TestGetConfigurations.java ! test/jdk/jdk/jfr/api/recording/settings/TestSettingsAvailability.java ! test/jdk/jdk/jfr/api/recording/state/TestOptionState.java ! test/jdk/jdk/jfr/api/recording/state/TestState.java ! test/jdk/jdk/jfr/api/recording/state/TestStateDuration.java ! test/jdk/jdk/jfr/api/recording/state/TestStateIdenticalListeners.java ! test/jdk/jdk/jfr/api/recording/state/TestStateInvalid.java ! test/jdk/jdk/jfr/api/recording/state/TestStateMultiple.java ! test/jdk/jdk/jfr/api/recording/state/TestStateScheduleStart.java ! test/jdk/jdk/jfr/api/recording/time/TestTime.java ! test/jdk/jdk/jfr/api/recording/time/TestTimeDuration.java ! test/jdk/jdk/jfr/api/recording/time/TestTimeMultiple.java ! test/jdk/jdk/jfr/api/recording/time/TestTimeScheduleStart.java ! test/jdk/jdk/jfr/api/settings/TestFilterEvents.java ! test/jdk/jdk/jfr/api/settings/TestSettingControl.java ! test/jdk/jdk/jfr/event/allocation/TestObjectAllocationInNewTLABEvent.java ! test/jdk/jdk/jfr/event/allocation/TestObjectAllocationOutsideTLABEvent.java ! test/jdk/jdk/jfr/event/allocation/TestObjectAllocationSampleEvent.java ! test/jdk/jdk/jfr/event/allocation/TestObjectAllocationSampleEventThrottling.java ! test/jdk/jdk/jfr/event/compiler/TestCodeCacheConfig.java ! test/jdk/jdk/jfr/event/compiler/TestCodeCacheStats.java ! test/jdk/jdk/jfr/event/compiler/TestCodeSweeper.java ! test/jdk/jdk/jfr/event/compiler/TestCompilerCompile.java ! test/jdk/jdk/jfr/event/compiler/TestCompilerConfig.java ! test/jdk/jdk/jfr/event/compiler/TestCompilerInlining.java ! test/jdk/jdk/jfr/event/compiler/TestCompilerPhase.java ! test/jdk/jdk/jfr/event/compiler/TestCompilerQueueUtilization.java ! test/jdk/jdk/jfr/event/compiler/TestCompilerStats.java ! test/jdk/jdk/jfr/event/compiler/TestDeoptimization.java ! test/jdk/jdk/jfr/event/diagnostics/TestHeapDump.java ! test/jdk/jdk/jfr/event/gc/collection/TestG1ParallelPhases.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithG1ConcurrentMark.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithG1FullCollection.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithParallelOld.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithSerial.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithG1ConcurrentMark.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithG1FullCollection.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithParallelOld.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCEventMixedWithSerial.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCGarbageCollectionEvent.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCWithFasttime.java ! test/jdk/jdk/jfr/event/gc/collection/TestGarbageCollectionEventWithZMajor.java ! test/jdk/jdk/jfr/event/gc/collection/TestGarbageCollectionEventWithZMinor.java ! test/jdk/jdk/jfr/event/gc/collection/TestSystemGC.java ! test/jdk/jdk/jfr/event/gc/collection/TestYoungGarbageCollectionEventWithDefNew.java ! test/jdk/jdk/jfr/event/gc/collection/TestYoungGarbageCollectionEventWithG1New.java ! test/jdk/jdk/jfr/event/gc/collection/TestYoungGarbageCollectionEventWithParallelScavenge.java ! test/jdk/jdk/jfr/event/gc/collection/TestZOldGarbageCollectionEvent.java ! test/jdk/jdk/jfr/event/gc/collection/TestZYoungGarbageCollectionEvent.java ! test/jdk/jdk/jfr/event/gc/configuration/TestGCConfigurationEvent.java ! test/jdk/jdk/jfr/event/gc/configuration/TestGCConfigurationEventWithDefaultPauseTarget.java ! test/jdk/jdk/jfr/event/gc/configuration/TestGCHeapConfigurationEventWith32BitOops.java ! test/jdk/jdk/jfr/event/gc/configuration/TestGCHeapConfigurationEventWithHeapBasedOops.java ! test/jdk/jdk/jfr/event/gc/configuration/TestGCHeapConfigurationEventWithZeroBasedOops.java ! test/jdk/jdk/jfr/event/gc/configuration/TestGCSurvivorConfigurationEvent.java ! test/jdk/jdk/jfr/event/gc/configuration/TestGCTLABConfigurationEvent.java ! test/jdk/jdk/jfr/event/gc/configuration/TestGCYoungGenerationConfigurationEventWithMinAndMaxSize.java ! test/jdk/jdk/jfr/event/gc/configuration/TestGCYoungGenerationConfigurationEventWithNewRatio.java ! test/jdk/jdk/jfr/event/gc/detailed/TestEvacuationFailedEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestEvacuationInfoEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestG1AIHOPEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestG1ConcurrentModeFailureEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestG1EvacMemoryStatsEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestG1HeapRegionTypeChangeEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestG1IHOPEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestG1InvalidHeapRegionTypeChangeEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestG1MMUEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestGCCPUTimeEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestGCHeapMemoryPoolUsageEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestGCHeapMemoryUsageEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestGCLockerEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestGCPhaseConcurrent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestPromotionEventWithG1.java ! test/jdk/jdk/jfr/event/gc/detailed/TestPromotionEventWithParallelScavenge.java ! test/jdk/jdk/jfr/event/gc/detailed/TestPromotionFailedEventWithDefNew.java ! test/jdk/jdk/jfr/event/gc/detailed/TestPromotionFailedEventWithParallelScavenge.java ! test/jdk/jdk/jfr/event/gc/detailed/TestShenandoahEvacuationInformationEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestShenandoahHeapRegionInformationEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestShenandoahHeapRegionStateChangeEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestTenuringDistributionEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestZAllocationStallEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestZPageAllocationEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestZRelocationSetEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestZRelocationSetGroupEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestZUncommitEvent.java ! test/jdk/jdk/jfr/event/gc/detailed/TestZUnmapEvent.java ! test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryCommittedSize.java ! test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryEventDefNewSerial.java ! test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryEventG1.java ! test/jdk/jdk/jfr/event/gc/heapsummary/TestHeapSummaryEventPSParOld.java ! test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithG1ConcurrentMark.java ! test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithG1FullCollection.java ! test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithParallelOld.java ! test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithSerial.java ! test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountEvent.java ! test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithDefNew.java ! test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithG1ConcurrentMark.java ! test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithG1FullCollection.java ! test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithG1New.java ! test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithParallelOld.java ! test/jdk/jdk/jfr/event/gc/refstat/TestRefStatEventWithParallelScavenge.java ! test/jdk/jdk/jfr/event/gc/stacktrace/TestDefNewAllocationPendingStackTrace.java ! test/jdk/jdk/jfr/event/gc/stacktrace/TestG1HumongousAllocationPendingStackTrace.java ! test/jdk/jdk/jfr/event/gc/stacktrace/TestG1OldAllocationPendingStackTrace.java ! test/jdk/jdk/jfr/event/gc/stacktrace/TestG1YoungAllocationPendingStackTrace.java ! test/jdk/jdk/jfr/event/gc/stacktrace/TestMarkSweepCompactAllocationPendingStackTrace.java ! test/jdk/jdk/jfr/event/gc/stacktrace/TestMetaspaceG1GCAllocationPendingStackTrace.java ! test/jdk/jdk/jfr/event/gc/stacktrace/TestMetaspaceParallelGCAllocationPendingStackTrace.java ! test/jdk/jdk/jfr/event/gc/stacktrace/TestMetaspaceSerialGCAllocationPendingStackTrace.java ! test/jdk/jdk/jfr/event/gc/stacktrace/TestParallelMarkSweepAllocationPendingStackTrace.java ! test/jdk/jdk/jfr/event/gc/stacktrace/TestParallelScavengeAllocationPendingStackTrace.java ! test/jdk/jdk/jfr/event/io/TestAsynchronousFileChannelEvents.java ! test/jdk/jdk/jfr/event/io/TestDeserializationEvent.java ! test/jdk/jdk/jfr/event/io/TestDisabledEvents.java ! test/jdk/jdk/jfr/event/io/TestFileChannelEvents.java ! test/jdk/jdk/jfr/event/io/TestFileReadOnly.java ! test/jdk/jdk/jfr/event/io/TestFileStreamEvents.java ! test/jdk/jdk/jfr/event/io/TestInstrumentation.java ! test/jdk/jdk/jfr/event/io/TestRandomAccessFileEvents.java ! test/jdk/jdk/jfr/event/io/TestRandomAccessFileThread.java ! test/jdk/jdk/jfr/event/io/TestSerializationMisdeclarationEvent.java ! test/jdk/jdk/jfr/event/io/TestSocketAdapterEvents.java ! test/jdk/jdk/jfr/event/io/TestSocketChannelEvents.java ! test/jdk/jdk/jfr/event/io/TestSocketEvents.java ! test/jdk/jdk/jfr/event/metadata/TestDefaultConfigurations.java ! test/jdk/jdk/jfr/event/metadata/TestEventMetadata.java ! test/jdk/jdk/jfr/event/metadata/TestLookForUntestedEvents.java ! test/jdk/jdk/jfr/event/oldobject/TestAllocationTime.java ! test/jdk/jdk/jfr/event/oldobject/TestArrayInformation.java ! test/jdk/jdk/jfr/event/oldobject/TestCircularReference.java ! test/jdk/jdk/jfr/event/oldobject/TestClassLoaderLeak.java ! test/jdk/jdk/jfr/event/oldobject/TestFieldInformation.java ! test/jdk/jdk/jfr/event/oldobject/TestG1.java ! test/jdk/jdk/jfr/event/oldobject/TestHeapDeep.java ! test/jdk/jdk/jfr/event/oldobject/TestHeapShallow.java ! test/jdk/jdk/jfr/event/oldobject/TestLargeRootSet.java ! test/jdk/jdk/jfr/event/oldobject/TestLastKnownHeapUsage.java ! test/jdk/jdk/jfr/event/oldobject/TestListenerLeak.java ! test/jdk/jdk/jfr/event/oldobject/TestMetadataRetention.java ! test/jdk/jdk/jfr/event/oldobject/TestObjectAge.java ! test/jdk/jdk/jfr/event/oldobject/TestObjectDescription.java ! test/jdk/jdk/jfr/event/oldobject/TestObjectSize.java ! test/jdk/jdk/jfr/event/oldobject/TestParallel.java ! test/jdk/jdk/jfr/event/oldobject/TestReferenceChainLimit.java ! test/jdk/jdk/jfr/event/oldobject/TestSanityDefault.java ! test/jdk/jdk/jfr/event/oldobject/TestSerial.java ! test/jdk/jdk/jfr/event/oldobject/TestShenandoah.java ! test/jdk/jdk/jfr/event/oldobject/TestThreadLocalLeak.java ! test/jdk/jdk/jfr/event/oldobject/TestZ.java ! test/jdk/jdk/jfr/event/os/TestCPUInformation.java ! test/jdk/jdk/jfr/event/os/TestCPULoad.java ! test/jdk/jdk/jfr/event/os/TestCPUTimeStampCounter.java ! test/jdk/jdk/jfr/event/os/TestInitialEnvironmentVariable.java ! test/jdk/jdk/jfr/event/os/TestOSInfo.java ! test/jdk/jdk/jfr/event/os/TestPhysicalMemoryEvent.java ! test/jdk/jdk/jfr/event/os/TestProcessStart.java ! test/jdk/jdk/jfr/event/os/TestSwapSpaceEvent.java ! test/jdk/jdk/jfr/event/os/TestSystemProcess.java ! test/jdk/jdk/jfr/event/os/TestThreadContextSwitches.java ! test/jdk/jdk/jfr/event/os/TestVirtualizationInfo.java ! test/jdk/jdk/jfr/event/profiling/TestFullStackTrace.java ! test/jdk/jdk/jfr/event/profiling/TestNative.java ! test/jdk/jdk/jfr/event/profiling/TestSamplingLongPeriod.java ! test/jdk/jdk/jfr/event/runtime/TestActiveRecordingEvent.java ! test/jdk/jdk/jfr/event/runtime/TestActiveSettingEvent.java ! test/jdk/jdk/jfr/event/runtime/TestAgentEvent.java ! test/jdk/jdk/jfr/event/runtime/TestClassDefineEvent.java ! test/jdk/jdk/jfr/event/runtime/TestClassLoadEvent.java ! test/jdk/jdk/jfr/event/runtime/TestClassLoaderStatsEvent.java ! test/jdk/jdk/jfr/event/runtime/TestClassLoadingStatisticsEvent.java ! test/jdk/jdk/jfr/event/runtime/TestClassRedefinition.java ! test/jdk/jdk/jfr/event/runtime/TestClassUnloadEvent.java ! test/jdk/jdk/jfr/event/runtime/TestDeprecatedEvent.java ! test/jdk/jdk/jfr/event/runtime/TestDirectBufferStatisticsEvent.java ! test/jdk/jdk/jfr/event/runtime/TestDumpReason.java ! test/jdk/jdk/jfr/event/runtime/TestExceptionEvents.java ! test/jdk/jdk/jfr/event/runtime/TestExceptionSubclass.java ! test/jdk/jdk/jfr/event/runtime/TestFinalizerStatisticsEvent.java ! test/jdk/jdk/jfr/event/runtime/TestFlush.java ! test/jdk/jdk/jfr/event/runtime/TestJavaBlockedEvent.java ! test/jdk/jdk/jfr/event/runtime/TestJavaMonitorInflateEvent.java ! test/jdk/jdk/jfr/event/runtime/TestJavaMonitorWaitEvent.java ! test/jdk/jdk/jfr/event/runtime/TestJavaMonitorWaitTimeOut.java ! test/jdk/jdk/jfr/event/runtime/TestJavaThreadStatisticsEvent.java ! test/jdk/jdk/jfr/event/runtime/TestJavaThreadStatisticsEventBean.java ! test/jdk/jdk/jfr/event/runtime/TestModuleEvents.java ! test/jdk/jdk/jfr/event/runtime/TestNativeLibrariesEvent.java ! test/jdk/jdk/jfr/event/runtime/TestNativeLibraryLoadEvent.java ! test/jdk/jdk/jfr/event/runtime/TestNativeMemoryUsageEvents.java ! test/jdk/jdk/jfr/event/runtime/TestNetworkUtilizationEvent.java ! test/jdk/jdk/jfr/event/runtime/TestRedefineClasses.java ! test/jdk/jdk/jfr/event/runtime/TestResidentSetSizeEvent.java ! test/jdk/jdk/jfr/event/runtime/TestRetransformClasses.java ! test/jdk/jdk/jfr/event/runtime/TestSafepointEvents.java ! test/jdk/jdk/jfr/event/runtime/TestShutdownEvent.java ! test/jdk/jdk/jfr/event/runtime/TestSizeTFlags.java ! test/jdk/jdk/jfr/event/runtime/TestSyncOnValueBasedClassEvent.java ! test/jdk/jdk/jfr/event/runtime/TestSystemPropertyEvent.java ! test/jdk/jdk/jfr/event/runtime/TestTableStatisticsEvent.java ! test/jdk/jdk/jfr/event/runtime/TestThreadAllocationEvent.java ! test/jdk/jdk/jfr/event/runtime/TestThreadCpuTimeEvent.java ! test/jdk/jdk/jfr/event/runtime/TestThreadDumpEvent.java ! test/jdk/jdk/jfr/event/runtime/TestThreadEndEvent.java ! test/jdk/jdk/jfr/event/runtime/TestThreadParkEvent.java ! test/jdk/jdk/jfr/event/runtime/TestThreadSleepEvent.java ! test/jdk/jdk/jfr/event/runtime/TestThreadStartEvent.java ! test/jdk/jdk/jfr/event/runtime/TestVMInfoEvent.java ! test/jdk/jdk/jfr/event/runtime/TestVMOperation.java ! test/jdk/jdk/jfr/event/runtime/TestVirtualThreadEndEvent.java ! test/jdk/jdk/jfr/event/runtime/TestVirtualThreadStartEvent.java ! test/jdk/jdk/jfr/event/runtime/TestVmFlagChangedEvent.java ! test/jdk/jdk/jfr/event/security/TestInitialSecurityPropertyEvent.java ! test/jdk/jdk/jfr/event/security/TestSecurityPropertyModificationEvent.java ! test/jdk/jdk/jfr/event/security/TestSecurityProviderServiceEvent.java ! test/jdk/jdk/jfr/event/security/TestTLSHandshakeEvent.java ! test/jdk/jdk/jfr/event/security/TestX509CertificateEvent.java ! test/jdk/jdk/jfr/event/security/TestX509ValidationEvent.java ! test/jdk/jdk/jfr/javaagent/TestEventInstrumentation.java ! test/jdk/jdk/jfr/javaagent/TestLoadedAgent.java ! test/jdk/jdk/jfr/javaagent/TestPremainAgent.java ! test/jdk/jdk/jfr/jcmd/TestFilenameExpansion.java ! test/jdk/jdk/jfr/jcmd/TestJcmdChangeLogLevel.java ! test/jdk/jdk/jfr/jcmd/TestJcmdConfigure.java ! test/jdk/jdk/jfr/jcmd/TestJcmdConfigureReadOnly.java ! test/jdk/jdk/jfr/jcmd/TestJcmdDump.java ! test/jdk/jdk/jfr/jcmd/TestJcmdDumpGeneratedFilename.java ! test/jdk/jdk/jfr/jcmd/TestJcmdDumpLimited.java ! test/jdk/jdk/jfr/jcmd/TestJcmdDumpPathToGCRoots.java ! test/jdk/jdk/jfr/jcmd/TestJcmdDumpWithFileName.java ! test/jdk/jdk/jfr/jcmd/TestJcmdLegacy.java ! test/jdk/jdk/jfr/jcmd/TestJcmdOptionSpecifiedOnce.java ! test/jdk/jdk/jfr/jcmd/TestJcmdPreserveRepository.java ! test/jdk/jdk/jfr/jcmd/TestJcmdSaveToFile.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStartDirNotExist.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStartFlushInterval.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStartGeneratedFilename.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStartInvaldFile.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStartPathToGCRoots.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStartReadOnlyFile.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStartStopDefault.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStartWithOptions.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStartWithSettings.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStopInvalidFile.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStopReadOnlyFile.java ! test/jdk/jdk/jfr/jcmd/TestJcmdStopWithoutFilename.java ! test/jdk/jdk/jfr/jcmd/TestJcmdView.java ! test/jdk/jdk/jfr/jcmd/TestJcmdViewMissingData.java ! test/jdk/jdk/jfr/jmx/TestClone.java ! test/jdk/jdk/jfr/jmx/TestCloneRepeat.java ! test/jdk/jdk/jfr/jmx/TestConfigurationInfo.java ! test/jdk/jdk/jfr/jmx/TestCopyTo.java ! test/jdk/jdk/jfr/jmx/TestCopyToInvalidPath.java ! test/jdk/jdk/jfr/jmx/TestCopyToReadOnlyDir.java ! test/jdk/jdk/jfr/jmx/TestCopyToRunning.java ! test/jdk/jdk/jfr/jmx/TestEventTypes.java ! test/jdk/jdk/jfr/jmx/TestFlightRecorderMXBeanLeak.java ! test/jdk/jdk/jfr/jmx/TestGetRecordings.java ! test/jdk/jdk/jfr/jmx/TestGetRecordingsMultiple.java ! test/jdk/jdk/jfr/jmx/TestMultipleRecordings.java ! test/jdk/jdk/jfr/jmx/TestNotificationListener.java ! test/jdk/jdk/jfr/jmx/TestPredefinedConfiguration.java ! test/jdk/jdk/jfr/jmx/TestPredefinedConfigurationInvalid.java ! test/jdk/jdk/jfr/jmx/TestRecordingOptions.java ! test/jdk/jdk/jfr/jmx/TestRecordingSettings.java ! test/jdk/jdk/jfr/jmx/TestRecordingSettingsInvalid.java ! test/jdk/jdk/jfr/jmx/TestRecordingSettingsMultiple.java ! test/jdk/jdk/jfr/jmx/TestRecordingState.java ! test/jdk/jdk/jfr/jmx/TestRecordingStateInvalid.java ! test/jdk/jdk/jfr/jmx/TestSetConfiguration.java ! test/jdk/jdk/jfr/jmx/TestSetConfigurationInvalid.java ! test/jdk/jdk/jfr/jmx/TestSnapshot.java ! test/jdk/jdk/jfr/jmx/TestStartRecording.java ! test/jdk/jdk/jfr/jmx/TestStream.java ! test/jdk/jdk/jfr/jmx/TestStreamClosed.java ! test/jdk/jdk/jfr/jmx/TestStreamMultiple.java ! test/jdk/jdk/jfr/jmx/TestWrongId.java ! test/jdk/jdk/jfr/jmx/info/TestConfigurationInfo.java ! test/jdk/jdk/jfr/jmx/info/TestEventTypeInfo.java ! test/jdk/jdk/jfr/jmx/info/TestRecordingInfo.java ! test/jdk/jdk/jfr/jmx/info/TestSettingDescriptorInfo.java ! test/jdk/jdk/jfr/jmx/streaming/TestClose.java ! test/jdk/jdk/jfr/jmx/streaming/TestDelegated.java ! test/jdk/jdk/jfr/jmx/streaming/TestDumpOrder.java ! test/jdk/jdk/jfr/jmx/streaming/TestEnableDisable.java ! test/jdk/jdk/jfr/jmx/streaming/TestMaxSize.java ! test/jdk/jdk/jfr/jmx/streaming/TestMetadataEvent.java ! test/jdk/jdk/jfr/jmx/streaming/TestMultipleChunks.java ! test/jdk/jdk/jfr/jmx/streaming/TestNew.java ! test/jdk/jdk/jfr/jmx/streaming/TestRemoteDump.java ! test/jdk/jdk/jfr/jmx/streaming/TestRotate.java ! test/jdk/jdk/jfr/jmx/streaming/TestSetSettings.java ! test/jdk/jdk/jfr/jmx/streaming/TestStart.java ! test/jdk/jdk/jfr/jmx/streaming/TestStop.java ! test/jdk/jdk/jfr/jvm/TestBeginAndEnd.java ! test/jdk/jdk/jfr/jvm/TestChunkIntegrity.java ! test/jdk/jdk/jfr/jvm/TestClassId.java ! test/jdk/jdk/jfr/jvm/TestClearStaleConstants.java ! test/jdk/jdk/jfr/jvm/TestCounterTime.java ! test/jdk/jdk/jfr/jvm/TestCreateNative.java ! test/jdk/jdk/jfr/jvm/TestDumpOnCrash.java ! test/jdk/jdk/jfr/jvm/TestEventDuration.java ! test/jdk/jdk/jfr/jvm/TestEventWriterLog.java ! test/jdk/jdk/jfr/jvm/TestFatEvent.java ! test/jdk/jdk/jfr/jvm/TestFormatDuration.java ! test/jdk/jdk/jfr/jvm/TestGetAllEventClasses.java ! test/jdk/jdk/jfr/jvm/TestGetEventWriter.java ! test/jdk/jdk/jfr/jvm/TestGetEventWriterPackage.java ! test/jdk/jdk/jfr/jvm/TestGetEventWriterReflection.java ! test/jdk/jdk/jfr/jvm/TestGetStackTraceId.java ! test/jdk/jdk/jfr/jvm/TestHiddenWait.java ! test/jdk/jdk/jfr/jvm/TestJFRIntrinsic.java ! test/jdk/jdk/jfr/jvm/TestJavaEvent.java ! test/jdk/jdk/jfr/jvm/TestLargeJavaEvent512k.java ! test/jdk/jdk/jfr/jvm/TestLargeJavaEvent64k.java ! test/jdk/jdk/jfr/jvm/TestLogImplementation.java ! test/jdk/jdk/jfr/jvm/TestLogOutput.java ! test/jdk/jdk/jfr/jvm/TestLongStringsInPool.java ! test/jdk/jdk/jfr/jvm/TestModularImage.java ! test/jdk/jdk/jfr/jvm/TestPid.java ! test/jdk/jdk/jfr/jvm/TestPrimitiveClasses.java ! test/jdk/jdk/jfr/jvm/TestThreadExclusion.java ! test/jdk/jdk/jfr/jvm/TestUnloadEventClassCount.java ! test/jdk/jdk/jfr/jvm/TestUnsupportedVM.java ! test/jdk/jdk/jfr/jvm/TestVerifyInstrumentation.java ! test/jdk/jdk/jfr/jvm/TestVirtualThreadExclusion.java ! test/jdk/jdk/jfr/jvm/TestWaste.java ! test/jdk/jdk/jfr/startupargs/TestBadOptionValues.java ! test/jdk/jdk/jfr/startupargs/TestDumpOnExit.java ! test/jdk/jdk/jfr/startupargs/TestEventSettings.java ! test/jdk/jdk/jfr/startupargs/TestFlushInterval.java ! test/jdk/jdk/jfr/startupargs/TestJFCWarnings.java ! test/jdk/jdk/jfr/startupargs/TestMemoryOptions.java ! test/jdk/jdk/jfr/startupargs/TestMultipleStartupRecordings.java ! test/jdk/jdk/jfr/startupargs/TestOldObjectQueueSize.java ! test/jdk/jdk/jfr/startupargs/TestOptionsWithLocale.java ! test/jdk/jdk/jfr/startupargs/TestPreserveRepository.java ! test/jdk/jdk/jfr/startupargs/TestRepositoryPath.java ! test/jdk/jdk/jfr/startupargs/TestRepositoryPathLong.java ! test/jdk/jdk/jfr/startupargs/TestRetransform.java ! test/jdk/jdk/jfr/startupargs/TestRetransformUsingLog.java ! test/jdk/jdk/jfr/startupargs/TestStartDelay.java ! test/jdk/jdk/jfr/startupargs/TestStartDelayRunning.java ! test/jdk/jdk/jfr/startupargs/TestStartDuration.java ! test/jdk/jdk/jfr/startupargs/TestStartHelp.java ! test/jdk/jdk/jfr/startupargs/TestStartMaxAgeSize.java ! test/jdk/jdk/jfr/startupargs/TestStartName.java ! test/jdk/jdk/jfr/startupargs/TestStartNoSettings.java ! test/jdk/jdk/jfr/startupargs/TestStartRecording.java ! test/jdk/jdk/jfr/startupargs/TestStartupMessage.java ! test/jdk/jdk/jfr/startupargs/TestStartupOptionSpecifiedOnce.java ! test/jdk/jdk/jfr/threading/TestDeepVirtualStackTrace.java ! test/jdk/jdk/jfr/threading/TestManyVirtualThreads.java ! test/jdk/jdk/jfr/threading/TestNestedVirtualThreads.java ! test/jdk/jdk/jfr/threading/TestStringPoolVirtualThreadPinning.java ! test/jdk/jdk/jfr/tool/TestAssemble.java ! test/jdk/jdk/jfr/tool/TestConfigure.java ! test/jdk/jdk/jfr/tool/TestDisassemble.java ! test/jdk/jdk/jfr/tool/TestHelp.java ! test/jdk/jdk/jfr/tool/TestMetadata.java ! test/jdk/jdk/jfr/tool/TestPrint.java ! test/jdk/jdk/jfr/tool/TestPrintDefault.java ! test/jdk/jdk/jfr/tool/TestPrintJSON.java ! test/jdk/jdk/jfr/tool/TestPrintXML.java ! test/jdk/jdk/jfr/tool/TestScrub.java ! test/jdk/jdk/jfr/tool/TestSummary.java ! test/jdk/jdk/jfr/tool/TestView.java Changeset: 002679ac Branch: premain Author: Koushik Thirupattur Committer: Weijun Wang Date: 2025-01-25 19:06:47 +0000 URL: https://git.openjdk.org/leyden/commit/002679ac9fe4de8150b7dd4c9aeb44eeef1257d6 8347065: Add missing @spec tags for Java Security Standard Algorithm Names Reviewed-by: weijun ! src/java.base/share/classes/java/security/AlgorithmParameterGenerator.java ! src/java.base/share/classes/java/security/AlgorithmParameters.java ! src/java.base/share/classes/java/security/DrbgParameters.java ! src/java.base/share/classes/java/security/KeyFactory.java ! src/java.base/share/classes/java/security/KeyPairGenerator.java ! src/java.base/share/classes/java/security/KeyStore.java ! src/java.base/share/classes/java/security/MessageDigest.java ! src/java.base/share/classes/java/security/SecureRandom.java ! src/java.base/share/classes/java/security/SecureRandomSpi.java ! src/java.base/share/classes/java/security/Signature.java ! src/java.base/share/classes/java/security/cert/CertPath.java ! src/java.base/share/classes/java/security/cert/CertPathBuilder.java ! src/java.base/share/classes/java/security/cert/CertPathValidator.java ! src/java.base/share/classes/java/security/cert/CertStore.java ! src/java.base/share/classes/java/security/cert/Certificate.java ! src/java.base/share/classes/java/security/cert/CertificateFactory.java ! src/java.base/share/classes/java/security/cert/CertificateFactorySpi.java ! src/java.base/share/classes/java/security/spec/ECGenParameterSpec.java ! src/java.base/share/classes/java/security/spec/EncodedKeySpec.java ! src/java.base/share/classes/java/security/spec/NamedParameterSpec.java ! src/java.base/share/classes/java/security/spec/PKCS8EncodedKeySpec.java ! src/java.base/share/classes/java/security/spec/PSSParameterSpec.java ! src/java.base/share/classes/java/security/spec/X509EncodedKeySpec.java ! src/java.base/share/classes/javax/crypto/Cipher.java ! src/java.base/share/classes/javax/crypto/ExemptionMechanism.java ! src/java.base/share/classes/javax/crypto/KDF.java ! src/java.base/share/classes/javax/crypto/KEM.java ! src/java.base/share/classes/javax/crypto/KeyAgreement.java ! src/java.base/share/classes/javax/crypto/KeyGenerator.java ! src/java.base/share/classes/javax/crypto/Mac.java ! src/java.base/share/classes/javax/crypto/SecretKeyFactory.java ! src/java.base/share/classes/javax/net/ssl/KeyManagerFactory.java ! src/java.base/share/classes/javax/net/ssl/SSLContext.java ! src/java.base/share/classes/javax/net/ssl/SSLEngine.java ! src/java.base/share/classes/javax/net/ssl/SSLParameters.java ! src/java.base/share/classes/javax/net/ssl/SSLServerSocket.java ! src/java.base/share/classes/javax/net/ssl/SSLServerSocketFactory.java ! src/java.base/share/classes/javax/net/ssl/SSLSocket.java ! src/java.base/share/classes/javax/net/ssl/SSLSocketFactory.java ! src/java.base/share/classes/javax/net/ssl/TrustManagerFactory.java ! src/java.base/share/classes/javax/security/auth/login/Configuration.java ! src/java.management/share/classes/com/sun/jmx/remote/security/HashedPasswordManager.java ! src/java.xml.crypto/share/classes/javax/xml/crypto/dsig/TransformService.java ! src/java.xml.crypto/share/classes/javax/xml/crypto/dsig/XMLSignatureFactory.java ! src/java.xml.crypto/share/classes/javax/xml/crypto/dsig/keyinfo/KeyInfoFactory.java ! src/jdk.jartool/share/classes/jdk/security/jarsigner/JarSigner.java Changeset: a1fd5f4e Branch: premain Author: Robbin Ehn Date: 2025-01-27 07:13:00 +0000 URL: https://git.openjdk.org/leyden/commit/a1fd5f4e88f52125eef4feea91a60641981177c1 8348554: Enhance Linux kernel version checks Reviewed-by: shade, fyang ! src/hotspot/os/linux/os_linux.cpp ! src/hotspot/os/linux/os_linux.hpp ! src/hotspot/os/linux/systemMemoryBarrier_linux.cpp Changeset: 70eec900 Branch: premain Author: Matthias Baesken Date: 2025-01-27 07:35:40 +0000 URL: https://git.openjdk.org/leyden/commit/70eec9001a550888f35476f9e2cf3c62d41442dd 8338303: Linux ppc64le with toolchain clang - detection failure in early JVM startup Reviewed-by: mdoerr, erikj, ihse ! make/autoconf/flags-cflags.m4 Changeset: b8c68c0e Branch: premain Author: Matthias Baesken Date: 2025-01-27 08:14:33 +0000 URL: https://git.openjdk.org/leyden/commit/b8c68c0e8c9aee43378fe16349c083cb868447f4 8348207: Linux PPC64 PCH build broken after JDK-8347909 Co-authored-by: Stefan Karlsson Reviewed-by: clanger, erikj, mdoerr ! make/hotspot/lib/JvmOverrideFiles.gmk Changeset: 175e58b2 Branch: premain Author: Theo Weidmann Committer: Christian Hagedorn Date: 2025-01-27 08:19:55 +0000 URL: https://git.openjdk.org/leyden/commit/175e58b2e321b779276a9a98a5e72cedb9638d0c 8332980: [IR Framework] Add option to measure IR rule processing time Reviewed-by: kvn, chagedorn ! test/hotspot/jtreg/compiler/lib/ir_framework/README.md ! test/hotspot/jtreg/compiler/lib/ir_framework/TestFramework.java ! test/hotspot/jtreg/compiler/lib/ir_framework/driver/irmatching/irmethod/IRMethod.java Changeset: afcc2b03 Branch: premain Author: Martin Doerr Date: 2025-01-27 10:11:53 +0000 URL: https://git.openjdk.org/leyden/commit/afcc2b03afc77f730300e1d92471466d56ed75fb 8348562: ZGC: segmentation fault due to missing node type check in barrier elision analysis Reviewed-by: rcastanedalo, rrich ! src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp Changeset: ffeb9b5a Branch: premain Author: Eirik Bj?rsn?s Date: 2025-01-27 12:46:43 +0000 URL: https://git.openjdk.org/leyden/commit/ffeb9b5aff6b91297b4bbedb7b33670dc17309ed 8342807: Update links in java.base to use https:// Reviewed-by: rriggs, ihse, jkern ! src/java.base/aix/native/libjli/java_md_aix.h ! src/java.base/linux/native/libsimdsort/xss-common-qsort.h ! src/java.base/share/man/keytool.md ! src/java.base/unix/classes/sun/net/PortConfig.java ! src/java.base/unix/native/libjava/ProcessEnvironment_md.c ! src/java.base/unix/native/libjava/ProcessImpl_md.c ! src/java.base/unix/native/libjava/childproc.c ! src/java.base/unix/native/libjava/childproc.h Changeset: f1e07974 Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-27 13:10:43 +0000 URL: https://git.openjdk.org/leyden/commit/f1e07974a09e5deaecdfe0d9e18553f1cde15e2d 8348586: Optionally silence make warnings about non-control variables Reviewed-by: mcimadamore, erikj ! bin/idea.sh ! make/Global.gmk ! make/InitSupport.gmk Changeset: 7d6055a7 Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-27 13:11:03 +0000 URL: https://git.openjdk.org/leyden/commit/7d6055a786ba5e146bcdd6f58b5d47f968a4af90 8348429: Update cross-compilation devkits to Fedora 41/gcc 13.2 Reviewed-by: erikj ! make/autoconf/flags-cflags.m4 ! make/conf/jib-profiles.js ! make/devkit/Tools.gmk Changeset: 1d8ccb89 Branch: premain Author: Chen Liang Date: 2025-01-27 14:03:35 +0000 URL: https://git.openjdk.org/leyden/commit/1d8ccb89204cc5efbcecdaa0c9de7b2c5a109d5d 8342465: Improve API documentation for java.lang.classfile Reviewed-by: asotona, darcy ! src/java.base/share/classes/java/lang/classfile/AccessFlags.java ! src/java.base/share/classes/java/lang/classfile/AnnotationValue.java ! src/java.base/share/classes/java/lang/classfile/AttributedElement.java ! src/java.base/share/classes/java/lang/classfile/ClassBuilder.java ! src/java.base/share/classes/java/lang/classfile/ClassElement.java ! src/java.base/share/classes/java/lang/classfile/ClassFile.java ! src/java.base/share/classes/java/lang/classfile/ClassFileBuilder.java ! src/java.base/share/classes/java/lang/classfile/ClassFileElement.java ! src/java.base/share/classes/java/lang/classfile/ClassFileTransform.java ! src/java.base/share/classes/java/lang/classfile/ClassFileVersion.java ! src/java.base/share/classes/java/lang/classfile/ClassHierarchyResolver.java ! src/java.base/share/classes/java/lang/classfile/ClassModel.java ! src/java.base/share/classes/java/lang/classfile/ClassTransform.java ! src/java.base/share/classes/java/lang/classfile/CodeBuilder.java ! src/java.base/share/classes/java/lang/classfile/CodeElement.java ! src/java.base/share/classes/java/lang/classfile/CodeModel.java ! src/java.base/share/classes/java/lang/classfile/CodeTransform.java ! src/java.base/share/classes/java/lang/classfile/CompoundElement.java ! src/java.base/share/classes/java/lang/classfile/FieldBuilder.java ! src/java.base/share/classes/java/lang/classfile/FieldElement.java ! src/java.base/share/classes/java/lang/classfile/FieldModel.java ! src/java.base/share/classes/java/lang/classfile/FieldTransform.java ! src/java.base/share/classes/java/lang/classfile/Instruction.java ! src/java.base/share/classes/java/lang/classfile/Interfaces.java ! src/java.base/share/classes/java/lang/classfile/MethodBuilder.java ! src/java.base/share/classes/java/lang/classfile/MethodElement.java ! src/java.base/share/classes/java/lang/classfile/MethodModel.java ! src/java.base/share/classes/java/lang/classfile/MethodTransform.java ! src/java.base/share/classes/java/lang/classfile/Opcode.java ! src/java.base/share/classes/java/lang/classfile/PseudoInstruction.java ! src/java.base/share/classes/java/lang/classfile/Superclass.java ! src/java.base/share/classes/java/lang/classfile/TypeKind.java ! src/java.base/share/classes/java/lang/classfile/attribute/CodeAttribute.java ! src/java.base/share/classes/java/lang/classfile/attribute/InnerClassInfo.java ! src/java.base/share/classes/java/lang/classfile/attribute/MethodParameterInfo.java ! src/java.base/share/classes/java/lang/classfile/attribute/ModuleAttribute.java ! src/java.base/share/classes/java/lang/classfile/attribute/ModuleExportInfo.java ! src/java.base/share/classes/java/lang/classfile/attribute/ModuleOpenInfo.java ! src/java.base/share/classes/java/lang/classfile/attribute/ModuleRequireInfo.java ! src/java.base/share/classes/java/lang/classfile/attribute/ModuleResolutionAttribute.java ! src/java.base/share/classes/java/lang/classfile/constantpool/ConstantPoolBuilder.java ! src/java.base/share/classes/java/lang/classfile/instruction/ExceptionCatch.java ! src/java.base/share/classes/java/lang/classfile/package-info.java ! src/java.base/share/classes/java/lang/classfile/snippet-files/PackageSnippets.java Changeset: ad01dfb6 Branch: premain Author: Albert Mingkun Yang Date: 2025-01-27 14:57:49 +0000 URL: https://git.openjdk.org/leyden/commit/ad01dfb670215a35d4151c7129c9086888e1f9e8 8346920: Serial: Support allocation in old generation when heap is almost full Reviewed-by: tschatzl, gli, sjohanss ! src/hotspot/share/gc/serial/serialHeap.cpp ! src/hotspot/share/gc/serial/serialHeap.hpp Changeset: 03106eb2 Branch: premain Author: Gennadiy Krivoshein Committer: Alexander Scherbatiy Date: 2025-01-27 18:05:19 +0000 URL: https://git.openjdk.org/leyden/commit/03106eb2d37903f3367b54c615a77e9df219e9cd 8344119: CUPSPrinter does not respect PostScript printer definition specification in case of reading ImageableArea values from PPD files Reviewed-by: prr, psadhukhan ! src/java.desktop/unix/native/common/awt/CUPSfuncs.c + test/jdk/javax/print/CUPSPrinterImageableAreaTest.java Changeset: aba60a92 Branch: premain Author: Weijun Wang Date: 2025-01-27 18:09:17 +0000 URL: https://git.openjdk.org/leyden/commit/aba60a927494d114904e27930040755855bbb348 8189441: Define algorithm names for keys derived from KeyAgreement Reviewed-by: mullan ! src/java.base/share/classes/com/sun/crypto/provider/DHKeyAgreement.java ! src/java.base/share/classes/javax/crypto/KeyAgreement.java ! src/java.base/share/classes/javax/crypto/KeyAgreementSpi.java ! src/java.base/share/classes/sun/security/ec/ECDHKeyAgreement.java ! src/java.base/share/classes/sun/security/ec/XDHKeyAgreement.java ! src/java.base/share/classes/sun/security/util/KeyUtil.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11ECDHKeyAgreement.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11KeyAgreement.java + test/jdk/java/security/KeyAgreement/Generic.java ! test/jdk/sun/security/pkcs11/nss/p11-nss-sensitive.txt Changeset: 039e73fc Branch: premain Author: Weijun Wang Date: 2025-01-27 18:21:51 +0000 URL: https://git.openjdk.org/leyden/commit/039e73fcdb765cb73ecb9929187dd9630de131b4 8346736: Java Security Standard Algorithm Names spec should include key algorithm names Reviewed-by: mullan, hchao ! src/java.base/share/classes/java/security/Key.java ! src/java.base/share/classes/java/security/spec/EncodedKeySpec.java ! src/java.base/share/classes/java/security/spec/PKCS8EncodedKeySpec.java ! src/java.base/share/classes/java/security/spec/X509EncodedKeySpec.java ! src/java.base/share/classes/javax/crypto/KDF.java ! src/java.base/share/classes/javax/crypto/KDFSpi.java ! src/java.base/share/classes/javax/crypto/KEM.java ! src/java.base/share/classes/javax/crypto/KEMSpi.java ! src/java.base/share/classes/javax/crypto/spec/SecretKeySpec.java Changeset: 8cc13045 Branch: premain Author: Matthias Ernst Committer: Jorn Vernee Date: 2025-01-27 19:40:26 +0000 URL: https://git.openjdk.org/leyden/commit/8cc13045428eebb8933df865f9a87f0f91909ba5 8287788: Implement a better allocator for downcalls Reviewed-by: jvernee ! src/java.base/share/classes/jdk/internal/foreign/SlicingAllocator.java + src/java.base/share/classes/jdk/internal/foreign/abi/BufferStack.java ! src/java.base/share/classes/jdk/internal/foreign/abi/SharedUtils.java + test/jdk/java/foreign/TestBufferStack.java + test/jdk/java/foreign/libTestBufferStack.c + test/micro/org/openjdk/bench/java/lang/foreign/CallOverheadByValue.java + test/micro/org/openjdk/bench/java/lang/foreign/libCallOverheadByValue.c Changeset: 21feef32 Branch: premain Author: Chris Plummer Date: 2025-01-27 19:45:50 +0000 URL: https://git.openjdk.org/leyden/commit/21feef32803b2593b097fb225c7a4c7cd46525da 8348239: SA does not know about DeoptimizeObjectsALotThread Reviewed-by: kevinw, dlong, dholmes, lmesnik ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/compiler/compileBroker.hpp ! src/hotspot/share/runtime/vmStructs.cpp + src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/DeoptimizeObjectsALotThread.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Thread.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Threads.java Changeset: 1916a777 Branch: premain Author: Calvin Cheung Date: 2025-01-27 22:41:55 +0000 URL: https://git.openjdk.org/leyden/commit/1916a7773f2083096e18b92d71d384453652c07d 8346923: MetaspaceShared base calculation may cause overflow in align_up Reviewed-by: iklam, matsaave ! src/hotspot/share/cds/metaspaceShared.cpp Changeset: 46f48e4e Branch: premain Author: Ioi Lam Date: 2025-01-28 00:12:57 +0000 URL: https://git.openjdk.org/leyden/commit/46f48e4e3d5dd4506c77cda1b01b9c008cb6a738 8348515: Add docs for -XX:AOT* options in java man pages Reviewed-by: adinn, kvn ! src/java.base/share/man/java.md Changeset: 2537a05c Branch: premain Author: Robbin Ehn Date: 2025-01-28 07:35:30 +0000 URL: https://git.openjdk.org/leyden/commit/2537a05c06171ce91eae69d478c4e4e88a11a60f 8348384: RISC-V: Disable auto-enable Vector on buggy kernels Reviewed-by: fyang, mli, luhenry ! src/hotspot/os_cpu/linux_riscv/riscv_hwprobe.cpp Changeset: f71541c9 Branch: premain Author: Kevin Walls Date: 2025-01-28 09:22:50 +0000 URL: https://git.openjdk.org/leyden/commit/f71541c93b814cd39c3dd253234a453e5d71f4c0 8344976: Remove the jmx.invoke.getters compatibility property Reviewed-by: cjplummer, dfuchs, sspitsyn ! src/java.management/share/classes/com/sun/jmx/mbeanserver/PerInterface.java ! test/jdk/javax/management/Introspector/InvokeGettersTest.java Changeset: 1f74caa7 Branch: premain Author: Theo Weidmann Committer: Christian Hagedorn Date: 2025-01-28 09:41:12 +0000 URL: https://git.openjdk.org/leyden/commit/1f74caa7da9dc0bf0eb515b36791f6fd069e044d 8348401: [IR Framework] PrintTimes should not require verbose Reviewed-by: kvn, chagedorn ! test/hotspot/jtreg/compiler/lib/ir_framework/shared/TestFrameworkSocket.java ! test/hotspot/jtreg/compiler/lib/ir_framework/test/TestVM.java Changeset: 558255ae Branch: premain Author: Volkan Yazici Committer: Jaikiran Pai Date: 2025-01-28 10:22:55 +0000 URL: https://git.openjdk.org/leyden/commit/558255ae7029ea1091ec5bb05d2d48e9f0c58f72 8328919: Add BodyHandlers / BodySubscribers methods to handle excessive server input Reviewed-by: jpai ! src/java.net.http/share/classes/java/net/http/HttpResponse.java + src/java.net.http/share/classes/jdk/internal/net/http/LimitingSubscriber.java + test/jdk/java/net/httpclient/HttpResponseLimitingTest.java Changeset: a4942a2f Branch: premain Author: Joachim Kern Date: 2025-01-28 10:25:36 +0000 URL: https://git.openjdk.org/leyden/commit/a4942a2f7a2afdea5577eaae7cc4322ef1662fb9 8348286: [AIX] clang 17 introduces new warning Wtentative-Definitions which produces Build errors Reviewed-by: ihse, azvegint ! src/java.desktop/share/native/libawt/awt/image/imageInitIDs.c ! src/java.desktop/share/native/libawt/awt/image/imageInitIDs.h - src/java.desktop/unix/native/libawt_xawt/awt/fp_pipewire.h ! src/java.desktop/unix/native/libawt_xawt/awt/screencast_pipewire.c Changeset: 3a8680e9 Branch: premain Author: Nizar Benalla Date: 2025-01-28 11:13:54 +0000 URL: https://git.openjdk.org/leyden/commit/3a8680e919fb2505ff0e05e6ea6ae39ef25c81b2 8347058: When automatically translating the page to pt-br, all CSS styling disappears Reviewed-by: hannesw, liach ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/Head.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/html/HtmlTree.java ! test/langtools/jdk/javadoc/doclet/testModuleSpecificStylesheet/TestModuleSpecificStylesheet.java ! test/langtools/jdk/javadoc/doclet/testOptions/TestOptions.java ! test/langtools/jdk/javadoc/doclet/testPackageSpecificStylesheet/TestPackageSpecificStylesheet.java ! test/langtools/jdk/javadoc/doclet/testSearch/TestSearch.java ! test/langtools/jdk/javadoc/doclet/testStylesheet/TestStylesheet.java Changeset: 2bef5b4a Branch: premain Author: Dhamoder Nalla Committer: Kevin Walls Date: 2025-01-28 11:32:00 +0000 URL: https://git.openjdk.org/leyden/commit/2bef5b4a877f4d3bc766558b8782b7b57dee79a8 8348323: Corrupted timezone string in JVM crash log Reviewed-by: dholmes, amitkumar, kevinw ! src/hotspot/share/runtime/os.cpp Changeset: 5fec9994 Branch: premain Author: Zhengyu Gu Date: 2025-01-28 13:29:37 +0000 URL: https://git.openjdk.org/leyden/commit/5fec999474dd4e88299ca02fccce8332fa5766ec 8339668: Parallel: Adopt PartialArrayState to consolidate marking stack in Full GC Co-authored-by: Thomas Schatzl Reviewed-by: tschatzl, ayang ! src/hotspot/share/gc/parallel/psCompactionManager.cpp ! src/hotspot/share/gc/parallel/psCompactionManager.hpp ! src/hotspot/share/gc/parallel/psCompactionManager.inline.hpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psScavenge.cpp ! src/hotspot/share/gc/shared/taskqueue.hpp Changeset: fb066cae Branch: premain Author: Alexey Semenyuk Date: 2025-01-28 13:51:04 +0000 URL: https://git.openjdk.org/leyden/commit/fb066caea8a6bbf5b7a6fbe1ca51282e2c7c1ff2 8347272: [ubsan] JvmLauncher.cpp:262:52: runtime error: applying non-zero offset 40 to null pointer Reviewed-by: almatvee, mbaesken ! src/jdk.jpackage/share/native/applauncher/JvmLauncher.cpp Changeset: 81032560 Branch: premain Author: Jiangli Zhou Date: 2025-01-28 16:42:13 +0000 URL: https://git.openjdk.org/leyden/commit/81032560f797dc18bd6a4a75b44c26925aabac5b 8348348: Remove unnecessary #ifdef STATIC_BUILD around DEF_STATIC_JNI_OnLoad from zip_util.c Reviewed-by: sgehwolf ! src/java.base/share/native/libzip/zip_util.c Changeset: a224f12c Branch: premain Author: Justin Lu Date: 2025-01-28 17:40:20 +0000 URL: https://git.openjdk.org/leyden/commit/a224f12cb701b45df4706a403a05c66de2d623af 8348205: Improve cutover time selection when building available currencies set Reviewed-by: naoto, rriggs ! src/java.base/share/classes/java/util/Currency.java Changeset: 9f4d3de4 Branch: premain Author: Cesar Soares Lucas Committer: Vladimir Kozlov Date: 2025-01-28 19:17:15 +0000 URL: https://git.openjdk.org/leyden/commit/9f4d3de442a846c503dac52de4a757e5b5638e73 8347718: Unexpected NullPointerException in C2 compiled code due to ReduceAllocationMerges Reviewed-by: kvn, thartmann ! src/hotspot/share/opto/escape.cpp + test/hotspot/jtreg/compiler/c2/TestReduceAllocationAndPointerComparisons.java Changeset: c3c38887 Branch: premain Author: Cesar Soares Lucas Committer: Vladimir Kozlov Date: 2025-01-28 19:18:59 +0000 URL: https://git.openjdk.org/leyden/commit/c3c3888762712e455757e4a52de8d680d58b8883 8336760: [JVMCI] -XX:+PrintCompilation should also print "hosted" JVMCI compilations Reviewed-by: dnsimon, kvn ! src/hotspot/share/jvmci/jvmciCodeInstaller.cpp Changeset: c018a604 Branch: premain Author: Daniel Gredler Committer: Phil Race Date: 2025-01-28 20:02:48 +0000 URL: https://git.openjdk.org/leyden/commit/c018a604f6857e319bf8b14913c14dc2d36aaca1 8344637: Fix Page8 of manual test java/awt/print/PrinterJob/PrintTextTest.java on Linux and Windows Reviewed-by: honkar, prr ! src/java.desktop/share/classes/sun/print/PathGraphics.java ! src/java.desktop/windows/classes/sun/awt/windows/WPathGraphics.java ! test/jdk/ProblemList.txt ! test/jdk/java/awt/print/PrinterJob/PrintTextTest.java Changeset: 1efae9a4 Branch: premain Author: Jiangli Zhou Date: 2025-01-28 20:24:16 +0000 URL: https://git.openjdk.org/leyden/commit/1efae9a41e36859ccf31dbe64524a46af6823269 8348888: tier1 closed build failure on Windows after JDK-8348348 Reviewed-by: kcr, liach, asemenyuk ! src/java.base/share/native/libzip/zip_util.c Changeset: 3a564ed1 Branch: premain Author: Justin Lu Date: 2025-01-28 21:31:46 +0000 URL: https://git.openjdk.org/leyden/commit/3a564ed1019c66c28afa729973948d3a6e6c4c41 8347955: TimeZone methods to stream the available timezone IDs Reviewed-by: naoto, rriggs ! src/java.base/share/classes/java/util/TimeZone.java ! src/java.base/share/classes/sun/util/calendar/ZoneInfo.java ! src/java.base/share/classes/sun/util/calendar/ZoneInfoFile.java ! src/java.base/share/classes/sun/util/cldr/CLDRTimeZoneNameProviderImpl.java ! test/jdk/java/text/Format/DateFormat/DateFormatTest.java ! test/jdk/java/util/Calendar/CalendarRegression.java ! test/jdk/java/util/PluggableLocale/TimeZoneNameProviderTest.java + test/jdk/java/util/TimeZone/AvailableIDsTest.java ! test/jdk/java/util/TimeZone/Bug5097350.java ! test/jdk/java/util/TimeZone/Bug6329116.java ! test/jdk/java/util/TimeZone/Bug6772689.java ! test/jdk/java/util/TimeZone/CLDRDisplayNamesTest.java ! test/jdk/java/util/TimeZone/DaylightTimeTest.java ! test/jdk/java/util/TimeZone/IDTest.java ! test/jdk/java/util/TimeZone/ListTimeZones.java ! test/jdk/sun/util/resources/TimeZone/Bug4640234.java Changeset: 5e81fa6a Branch: premain Author: Alexey Semenyuk Date: 2025-01-28 23:06:13 +0000 URL: https://git.openjdk.org/leyden/commit/5e81fa6a1f53e3efb93f32ee44eff20cabcf125f 8348892: Properly fix compilation error for zip_util.c on Windows Reviewed-by: kcr, jiangli ! src/java.base/share/native/libzip/zip_util.c Changeset: 98a93e11 Branch: premain Author: Chris Plummer Date: 2025-01-28 23:29:59 +0000 URL: https://git.openjdk.org/leyden/commit/98a93e115137a305aed6b7dbf1d4a7d5906fe77c 8348800: Many serviceability/sa tests failing after JDK-8348239 Reviewed-by: shade, kevinw, lmesnik ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Threads.java Changeset: 55c3e78f Branch: premain Author: Tobias Hartmann Date: 2025-01-29 07:13:11 +0000 URL: https://git.openjdk.org/leyden/commit/55c3e78f4ec982908e9a4b5e64b8be89717c49f4 8348631: Crash in PredictedCallGenerator::generate after JDK-8347006 Reviewed-by: kvn, epeter ! src/hotspot/share/opto/callGenerator.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/library_call.hpp + test/hotspot/jtreg/compiler/intrinsics/TestArrayGuardWithInterfaces.java Changeset: 168a471f Branch: premain Author: Matthias Baesken Date: 2025-01-29 08:22:42 +0000 URL: https://git.openjdk.org/leyden/commit/168a471fd0b6cc7c6a9e2ada19edbc489d62849c 8348830: LIBFONTMANAGER optimization is always HIGHEST Reviewed-by: erikj, prr, serb ! make/modules/java.desktop/lib/ClientLibraries.gmk Changeset: 3af4cfc5 Branch: premain Author: Stefan Karlsson Date: 2025-01-29 08:36:23 +0000 URL: https://git.openjdk.org/leyden/commit/3af4cfc52d7d72ebd93d277a7b46d3526f8f59d2 8348180: Remove mention of include of precompiled.hpp from the HotSpot Style Guide Reviewed-by: dholmes, eosterlund ! doc/hotspot-style.html ! doc/hotspot-style.md Changeset: 69ec4534 Branch: premain Author: Kevin Walls Date: 2025-01-29 08:42:06 +0000 URL: https://git.openjdk.org/leyden/commit/69ec45348a89eb93794f04cf0d5a61377b90f156 8347985: Deprecate java.management Permission classes for removal Reviewed-by: sspitsyn, rriggs ! src/java.management/share/classes/java/lang/management/ManagementPermission.java ! src/java.management/share/classes/javax/management/MBeanPermission.java ! src/java.management/share/classes/javax/management/MBeanServerPermission.java ! src/java.management/share/classes/javax/management/MBeanTrustPermission.java ! src/java.management/share/classes/javax/management/remote/SubjectDelegationPermission.java Changeset: fff97d6d Branch: premain Author: Theo Weidmann Committer: Tobias Hartmann Date: 2025-01-29 08:59:19 +0000 URL: https://git.openjdk.org/leyden/commit/fff97d6d9ae136121f042c760fed2ece431f9473 8343938: TestStressBailout triggers "Should not be locked when freed" assert Reviewed-by: kvn, thartmann ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/compiler/compileTask.cpp ! src/hotspot/share/compiler/compileTask.hpp Changeset: fe6d9ab9 Branch: premain Author: Matthias Baesken Date: 2025-01-29 13:04:44 +0000 URL: https://git.openjdk.org/leyden/commit/fe6d9ab951cb84d1161aee781af2d93edaac3595 8348582: Set -fstack-protector when building with clang Reviewed-by: jkern, erikj ! make/autoconf/flags-cflags.m4 Changeset: f98d9a33 Branch: premain Author: Shaojin Wen Date: 2025-01-29 13:07:19 +0000 URL: https://git.openjdk.org/leyden/commit/f98d9a330128302207fb66dfa2555885ad93135f 8348870: Eliminate array bound checks in DecimalDigits Reviewed-by: liach, rgiulietti ! src/java.base/share/classes/jdk/internal/util/DecimalDigits.java Changeset: 6bfae3ac Branch: premain Author: Guoxiong Li Date: 2025-01-29 14:36:55 +0000 URL: https://git.openjdk.org/leyden/commit/6bfae3acc107e046294bfc2e535ccddc99205490 8333386: TestAbortOnVMOperationTimeout test fails for client VM Reviewed-by: ayang, tschatzl ! test/hotspot/jtreg/runtime/Safepoint/TestAbortOnVMOperationTimeout.java Changeset: 51cce6e6 Branch: premain Author: Prasanta Sadhukhan Date: 2025-01-29 14:37:14 +0000 URL: https://git.openjdk.org/leyden/commit/51cce6e612e1e3b4647ad2c0c8bffc0f3adccb63 8318577: Windows Look-and-Feel JProgressBarUI does not render correctly on 2x UI scale Reviewed-by: tr ! src/java.desktop/windows/classes/com/sun/java/swing/plaf/windows/WindowsProgressBarUI.java + test/jdk/javax/swing/JProgressBar/TestProgressBarUI.java Changeset: 96fefed3 Branch: premain Author: Theo Weidmann Date: 2025-01-29 15:14:40 +0000 URL: https://git.openjdk.org/leyden/commit/96fefed37f658c3aefd7419dd96ccaa474949a42 8319850: PrintInlining should print which methods are late inlines Reviewed-by: chagedorn, kvn, jsjolen, dlong ! src/hotspot/share/compiler/compileTask.cpp ! src/hotspot/share/compiler/compileTask.hpp ! src/hotspot/share/nmt/nmtTreap.hpp ! src/hotspot/share/opto/bytecodeInfo.cpp ! src/hotspot/share/opto/callGenerator.cpp ! src/hotspot/share/opto/callGenerator.hpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/compile.hpp ! src/hotspot/share/opto/doCall.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/node.cpp ! src/hotspot/share/opto/parse.hpp + src/hotspot/share/opto/printinlining.cpp + src/hotspot/share/opto/printinlining.hpp ! test/hotspot/jtreg/compiler/ciReplay/InliningBase.java + test/hotspot/jtreg/compiler/inlining/LateInlinePrinting.java ! test/hotspot/jtreg/compiler/inlining/TestDuplicatedLateInliningOutput.java Changeset: cbc89a7a Branch: premain Author: Shaojin Wen Date: 2025-01-29 16:24:01 +0000 URL: https://git.openjdk.org/leyden/commit/cbc89a7ac6a45acd35ddfee4ab6fac9cc807d8fb 8348898: Remove unused OctalDigits to clean up code Reviewed-by: liach - src/java.base/share/classes/jdk/internal/util/OctalDigits.java Changeset: d266ca96 Branch: premain Author: Ioi Lam Date: 2025-01-29 16:52:10 +0000 URL: https://git.openjdk.org/leyden/commit/d266ca965d214f54c1ab16c1863f87728542b3e0 8348752: Enable -XX:+AOTClassLinking by default when -XX:AOTMode is specified Reviewed-by: shade, heidinga ! src/hotspot/share/cds/cdsConfig.cpp ! test/hotspot/jtreg/runtime/cds/appcds/AOTFlags.java Changeset: 4662363e Branch: premain Author: Theo Weidmann Committer: Aleksey Shipilev Date: 2025-01-29 16:57:00 +0000 URL: https://git.openjdk.org/leyden/commit/4662363e86990eee4864cc496eaefdde177dad00 8348687: [BACKOUT] C2: Non-fluid StringBuilder pattern bails out in OptoStringConcat Reviewed-by: chagedorn, shade ! src/hotspot/share/opto/stringopts.cpp ! src/hotspot/share/opto/stringopts.hpp - test/hotspot/jtreg/compiler/stringopts/TestFluidAndNonFluid.java - test/micro/org/openjdk/bench/vm/compiler/FluidSBBench.java Changeset: 6b581d22 Branch: premain Author: Vladimir Kozlov Date: 2025-01-29 17:24:10 +0000 URL: https://git.openjdk.org/leyden/commit/6b581d22e13599b16b38aff1ca5a795c6a910d30 8347997: assert(false) failed: EA: missing memory path Reviewed-by: thartmann, chagedorn ! src/hotspot/share/opto/library_call.cpp + test/hotspot/jtreg/compiler/intrinsics/TestContinuationPinningAndEA.java Changeset: cbe9ec53 Branch: premain Author: Jiangli Zhou Date: 2025-01-29 17:52:43 +0000 URL: https://git.openjdk.org/leyden/commit/cbe9ec530fc248be74766ff6ff32761cd415a6f0 8348905: Add support to specify the JDK for compiling Jtreg tests Reviewed-by: erikj ! make/RunTests.gmk Changeset: d985b31c Branch: premain Author: Alexander Zvegintsev Date: 2025-01-29 22:09:01 +0000 URL: https://git.openjdk.org/leyden/commit/d985b31cbb5646c526e1a68a7547f26f56d37607 8342096: Popup menus that request focus are not shown on Linux with Wayland Reviewed-by: aivanov, honkar ! src/java.desktop/unix/classes/sun/awt/UNIXToolkit.java ! test/jdk/javax/swing/JPopupMenu/FocusablePopupDismissTest.java + test/jdk/javax/swing/JPopupMenu/NestedFocusablePopupTest.java Changeset: 04c24f18 Branch: premain Author: Matthias Baesken Date: 2025-01-30 08:23:04 +0000 URL: https://git.openjdk.org/leyden/commit/04c24f18d554a57c537f3a77c5f6d0d03e7fc3d1 8347779: sun/tools/jhsdb/HeapDumpTestWithActiveProcess.java fails with Unable to deduce type of thread from address Reviewed-by: cjplummer, kevinw ! test/jdk/sun/tools/jhsdb/JShellHeapDumpTest.java Changeset: 14136f8b Branch: premain Author: Axel Boldt-Christmas Date: 2025-01-30 08:33:16 +0000 URL: https://git.openjdk.org/leyden/commit/14136f8b1106137317393bc2ab0a2db0d212f8d8 8347564: ZGC: Crash in DependencyContext::clean_unloading_dependents Reviewed-by: eosterlund, stefank, vlivanov ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/javaClasses.inline.hpp ! src/hotspot/share/classfile/javaClassesImpl.hpp ! src/hotspot/share/classfile/vmClassMacros.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/code/dependencyContext.cpp ! src/hotspot/share/code/dependencyContext.hpp ! src/hotspot/share/prims/methodHandles.cpp ! src/java.base/share/classes/java/lang/invoke/CallSite.java ! src/java.base/share/classes/java/lang/invoke/MethodHandleNatives.java ! test/hotspot/jtreg/compiler/jsr292/CallSiteDepContextTest.java ! test/hotspot/jtreg/compiler/jsr292/patches/java.base/java/lang/invoke/MethodHandleHelper.java Changeset: e0c2cb48 Branch: premain Author: Joachim Kern Date: 2025-01-30 08:36:05 +0000 URL: https://git.openjdk.org/leyden/commit/e0c2cb48b3c51f21596d76fe6b94bbe408196e22 8348663: [AIX] clang pollutes the burned-in library search paths of the generated executables Reviewed-by: ihse, clanger, mbaesken ! make/autoconf/basic.m4 ! make/autoconf/flags-ldflags.m4 = make/scripts/aix/ld.sh Changeset: bb528d5a Branch: premain Author: SendaoYan Date: 2025-01-30 08:55:40 +0000 URL: https://git.openjdk.org/leyden/commit/bb528d5ad6f28e9c1bc4e283d40c70489465bd00 8348567: [ASAN] Memory access partially overflows by NativeCallStack Reviewed-by: jsjolen, dholmes ! test/hotspot/gtest/nmt/test_nmt_nativecallstackstorage.cpp Changeset: fb0f2d25 Branch: premain Author: Serguei Spitsyn Date: 2025-01-30 09:11:13 +0000 URL: https://git.openjdk.org/leyden/commit/fb0f2d25d218e64a86995478fd3ea10d619834d5 8300708: Some nsk jvmti tests fail with virtual thread wrapper due to jvmti missing some virtual thread support Reviewed-by: cjplummer, lmesnik ! test/hotspot/jtreg/ProblemList-Virtual.txt ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal001.java ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal001/setlocal001.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal003/setlocal003.cpp ! test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetLocalVariable/setlocal004/setlocal004.cpp Changeset: f81772a4 Branch: premain Author: Stefan Karlsson Date: 2025-01-30 09:47:45 +0000 URL: https://git.openjdk.org/leyden/commit/f81772a49ebfa197bac7bf05cf7d468d819f742a 8348647: CDS dumping commits 3GB when large pages are used Reviewed-by: aboldtch, iklam ! src/hotspot/share/cds/metaspaceShared.cpp Changeset: 22069ff4 Branch: premain Author: Nizar Benalla Date: 2025-01-30 10:10:49 +0000 URL: https://git.openjdk.org/leyden/commit/22069ff42b7e5c3058415ef9b6e0b50b9d2c16ef 8348975: Broken links in the JDK 24 JavaDoc API documentation, build 33 Reviewed-by: liach ! make/common/Modules.gmk ! src/java.base/share/classes/java/util/Formatter.java ! src/java.naming/share/classes/com/sun/jndi/ldap/DefaultResponseControlFactory.java ! src/java.naming/share/classes/javax/naming/ldap/PagedResultsControl.java ! src/java.naming/share/classes/javax/naming/ldap/PagedResultsResponseControl.java ! src/jdk.jdi/share/classes/com/sun/jdi/connect/spi/TransportService.java ! test/docs/jdk/javadoc/doccheck/ExtLinksJdk.txt Changeset: 1858dc14 Branch: premain Author: Michal Karm Babacek Committer: Severin Gehwolf Date: 2025-01-30 11:12:44 +0000 URL: https://git.openjdk.org/leyden/commit/1858dc141041dbea7167007b17d03fe41378c0be 8336382: Fix error reporting in loading AWT Reviewed-by: prr, aivanov, serb ! src/java.desktop/unix/native/libawt/awt/awt_LoadLibrary.c + test/jdk/java/awt/Headless/HeadlessMalfunctionAgent.java + test/jdk/java/awt/Headless/HeadlessMalfunctionTest.java Changeset: 68689b57 Branch: premain Author: iklam Date: 2025-02-06 21:36:46 +0000 URL: https://git.openjdk.org/leyden/commit/68689b572cb1eb3675ba5a3b37b44888cf593533 Merge branch 'master' into premain ! make/InitSupport.gmk ! src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/g1/g1BarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/interp_masm_aarch64.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.hpp ! src/hotspot/cpu/aarch64/relocInfo_aarch64.cpp ! src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/templateInterpreterGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/templateTable_aarch64.cpp ! src/hotspot/cpu/arm/sharedRuntime_arm.cpp ! src/hotspot/cpu/arm/templateInterpreterGenerator_arm.cpp ! src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp ! src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp ! src/hotspot/cpu/riscv/sharedRuntime_riscv.cpp ! src/hotspot/cpu/riscv/templateInterpreterGenerator_riscv.cpp ! src/hotspot/cpu/s390/sharedRuntime_s390.cpp ! src/hotspot/cpu/s390/stubGenerator_s390.cpp ! src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp ! src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp ! src/hotspot/cpu/x86/c2_MacroAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/g1/g1BarrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/shared/cardTableBarrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/interp_masm_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/methodHandles_x86.cpp ! src/hotspot/cpu/x86/runtime_x86_64.cpp ! src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp ! src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/cpu/x86/templateInterpreterGenerator_x86.cpp ! src/hotspot/cpu/x86/templateTable_x86.cpp ! src/hotspot/cpu/zero/sharedRuntime_zero.cpp ! src/hotspot/os_cpu/bsd_aarch64/os_bsd_aarch64.cpp ! src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.cpp ! src/hotspot/share/adlc/main.cpp ! src/hotspot/share/asm/codeBuffer.cpp ! src/hotspot/share/asm/codeBuffer.hpp ! src/hotspot/share/c1/c1_Compilation.cpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_GraphBuilder.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_Runtime1.cpp ! src/hotspot/share/cds/aotArtifactFinder.cpp ! src/hotspot/share/cds/aotClassInitializer.cpp ! src/hotspot/share/cds/aotClassLinker.cpp ! src/hotspot/share/cds/aotConstantPoolResolver.cpp ! src/hotspot/share/cds/aotLinkedClassBulkLoader.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveBuilder.hpp ! src/hotspot/share/cds/archiveHeapLoader.cpp ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/archiveUtils.cpp ! src/hotspot/share/cds/cdsAccess.cpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsEndTrainingUpcall.cpp ! src/hotspot/share/cds/cdsHeapVerifier.cpp ! src/hotspot/share/cds/cdsProtectionDomain.cpp ! src/hotspot/share/cds/classListParser.cpp ! src/hotspot/share/cds/classListParser.hpp ! src/hotspot/share/cds/classListWriter.cpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dumpAllocStats.cpp ! src/hotspot/share/cds/dumpTimeClassInfo.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/finalImageRecipes.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/lambdaFormInvokers.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/methodProfiler.cpp ! src/hotspot/share/cds/regeneratedClasses.cpp ! src/hotspot/share/ci/ciConstant.cpp ! src/hotspot/share/ci/ciEnv.cpp ! src/hotspot/share/ci/ciField.cpp ! src/hotspot/share/ci/ciInstanceKlass.cpp ! src/hotspot/share/ci/ciMethod.cpp ! src/hotspot/share/ci/ciMethodData.cpp ! src/hotspot/share/ci/ciObject.cpp ! src/hotspot/share/ci/ciObjectFactory.cpp ! src/hotspot/share/ci/ciReplay.cpp ! src/hotspot/share/ci/ciUtilities.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoaderDataShared.cpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/classPrinter.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/klassFactory.cpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/modules.cpp ! src/hotspot/share/classfile/packageEntry.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/symbolTable.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/code/SCCache.cpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeCache.hpp ! src/hotspot/share/code/debugInfoRec.cpp ! src/hotspot/share/code/dependencies.cpp ! src/hotspot/share/code/dependencyContext.cpp ! src/hotspot/share/code/dependencyContext.hpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/oopRecorder.cpp ! src/hotspot/share/code/relocInfo.cpp ! src/hotspot/share/compiler/compilationPolicy.cpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/compiler/compileBroker.hpp ! src/hotspot/share/compiler/compileTask.cpp ! src/hotspot/share/compiler/compileTask.hpp ! src/hotspot/share/compiler/compilerOracle.cpp ! src/hotspot/share/compiler/disassembler.cpp ! src/hotspot/share/compiler/methodMatcher.cpp ! src/hotspot/share/compiler/oopMap.cpp ! src/hotspot/share/compiler/precompiler.cpp ! src/hotspot/share/compiler/recompilationPolicy.cpp ! src/hotspot/share/gc/g1/c1/g1BarrierSetC1.cpp ! src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp ! src/hotspot/share/gc/shared/barrierSetNMethod.cpp ! src/hotspot/share/gc/shared/collectorCounters.cpp ! src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp ! src/hotspot/share/interpreter/abstractInterpreter.cpp ! src/hotspot/share/interpreter/bytecodeHistogram.cpp ! src/hotspot/share/interpreter/bytecodeTracer.cpp ! src/hotspot/share/interpreter/interpreterRuntime.cpp ! src/hotspot/share/interpreter/interpreterRuntime.hpp ! src/hotspot/share/interpreter/linkResolver.cpp ! src/hotspot/share/interpreter/rewriter.cpp ! src/hotspot/share/interpreter/templateInterpreter.cpp ! src/hotspot/share/interpreter/templateInterpreterGenerator.cpp ! src/hotspot/share/interpreter/zero/zeroInterpreterGenerator.cpp ! src/hotspot/share/jfr/instrumentation/jfrEventClassTransformer.cpp ! src/hotspot/share/jvmci/jvmciCompiler.cpp ! src/hotspot/share/jvmci/jvmciRuntime.cpp ! src/hotspot/share/memory/allocation.cpp ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/nmt/virtualMemoryTracker.cpp ! src/hotspot/share/oops/array.hpp ! src/hotspot/share/oops/compressedOops.cpp ! src/hotspot/share/oops/constMethod.cpp ! src/hotspot/share/oops/constantPool.cpp ! src/hotspot/share/oops/cpCache.cpp ! src/hotspot/share/oops/instanceKlass.cpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/methodCounters.cpp ! src/hotspot/share/oops/methodData.cpp ! src/hotspot/share/oops/recompilationSchedule.cpp ! src/hotspot/share/oops/resolvedMethodEntry.cpp ! src/hotspot/share/oops/trainingData.cpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/compile.hpp ! src/hotspot/share/opto/doCall.cpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/opto/output.cpp ! src/hotspot/share/opto/parse.hpp ! src/hotspot/share/opto/parse1.cpp ! src/hotspot/share/opto/parse2.cpp ! src/hotspot/share/opto/parseHelper.cpp ! src/hotspot/share/opto/rootnode.cpp ! src/hotspot/share/opto/runtime.cpp ! src/hotspot/share/opto/runtime.hpp ! src/hotspot/share/opto/type.cpp ! src/hotspot/share/opto/vectorIntrinsics.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/jvmtiEnv.cpp ! src/hotspot/share/prims/methodHandles.cpp ! src/hotspot/share/prims/perf.cpp ! src/hotspot/share/prims/unsafe.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/deoptimization.cpp ! src/hotspot/share/runtime/flags/jvmFlag.cpp ! src/hotspot/share/runtime/init.cpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/javaThread.cpp ! src/hotspot/share/runtime/methodDetails.cpp ! src/hotspot/share/runtime/mutex.cpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/mutexLocker.hpp ! src/hotspot/share/runtime/perfData.cpp ! src/hotspot/share/runtime/runtimeUpcallNop.cpp ! src/hotspot/share/runtime/runtimeUpcalls.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/stubRoutines.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/threads.cpp ! src/hotspot/share/runtime/timer.cpp ! src/hotspot/share/runtime/timerTrace.cpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/hotspot/share/runtime/vmThread.cpp ! src/hotspot/share/services/diagnosticCommand.cpp ! src/hotspot/share/services/management.cpp ! src/hotspot/share/utilities/constantTag.cpp ! src/hotspot/share/utilities/ostream.cpp ! src/hotspot/share/utilities/xmlstream.cpp ! src/hotspot/share/utilities/zipLibrary.cpp ! src/java.base/share/classes/java/lang/System.java ! src/java.base/share/classes/java/lang/module/ModuleDescriptor.java ! src/java.base/share/classes/jdk/internal/misc/CDS.java ! src/java.base/share/native/libzip/zip_util.c ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Threads.java ! test/hotspot/jtreg/ProblemList.txt ! make/InitSupport.gmk ! src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/gc/g1/g1BarrierSetAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/interp_masm_aarch64.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp ! src/hotspot/cpu/aarch64/macroAssembler_aarch64.hpp ! src/hotspot/cpu/aarch64/relocInfo_aarch64.cpp ! src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/templateInterpreterGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/templateTable_aarch64.cpp ! src/hotspot/cpu/arm/sharedRuntime_arm.cpp ! src/hotspot/cpu/arm/templateInterpreterGenerator_arm.cpp ! src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp ! src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp ! src/hotspot/cpu/riscv/sharedRuntime_riscv.cpp ! src/hotspot/cpu/riscv/templateInterpreterGenerator_riscv.cpp ! src/hotspot/cpu/s390/sharedRuntime_s390.cpp ! src/hotspot/cpu/s390/stubGenerator_s390.cpp ! src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp ! src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp ! src/hotspot/cpu/x86/c2_MacroAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/g1/g1BarrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/gc/shared/cardTableBarrierSetAssembler_x86.cpp ! src/hotspot/cpu/x86/interp_masm_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/methodHandles_x86.cpp ! src/hotspot/cpu/x86/runtime_x86_64.cpp ! src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp ! src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/cpu/x86/templateInterpreterGenerator_x86.cpp ! src/hotspot/cpu/x86/templateTable_x86.cpp ! src/hotspot/cpu/zero/sharedRuntime_zero.cpp ! src/hotspot/os_cpu/bsd_aarch64/os_bsd_aarch64.cpp ! src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.cpp ! src/hotspot/share/adlc/main.cpp ! src/hotspot/share/asm/codeBuffer.cpp ! src/hotspot/share/asm/codeBuffer.hpp ! src/hotspot/share/c1/c1_Compilation.cpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_GraphBuilder.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_Runtime1.cpp ! src/hotspot/share/cds/aotArtifactFinder.cpp ! src/hotspot/share/cds/aotClassInitializer.cpp ! src/hotspot/share/cds/aotClassLinker.cpp ! src/hotspot/share/cds/aotConstantPoolResolver.cpp ! src/hotspot/share/cds/aotLinkedClassBulkLoader.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveBuilder.hpp ! src/hotspot/share/cds/archiveHeapLoader.cpp ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/archiveUtils.cpp + src/hotspot/share/cds/cdsAccess.cpp ! src/hotspot/share/cds/cdsConfig.cpp + src/hotspot/share/cds/cdsEndTrainingUpcall.cpp ! src/hotspot/share/cds/cdsHeapVerifier.cpp ! src/hotspot/share/cds/cdsProtectionDomain.cpp ! src/hotspot/share/cds/classListParser.cpp ! src/hotspot/share/cds/classListParser.hpp ! src/hotspot/share/cds/classListWriter.cpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dumpAllocStats.cpp ! src/hotspot/share/cds/dumpTimeClassInfo.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp + src/hotspot/share/cds/finalImageRecipes.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/lambdaFormInvokers.cpp ! src/hotspot/share/cds/metaspaceShared.cpp + src/hotspot/share/cds/methodProfiler.cpp ! src/hotspot/share/cds/regeneratedClasses.cpp ! src/hotspot/share/ci/ciConstant.cpp ! src/hotspot/share/ci/ciEnv.cpp ! src/hotspot/share/ci/ciField.cpp ! src/hotspot/share/ci/ciInstanceKlass.cpp ! src/hotspot/share/ci/ciMethod.cpp ! src/hotspot/share/ci/ciMethodData.cpp ! src/hotspot/share/ci/ciObject.cpp ! src/hotspot/share/ci/ciObjectFactory.cpp ! src/hotspot/share/ci/ciReplay.cpp ! src/hotspot/share/ci/ciUtilities.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoaderDataShared.cpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/classPrinter.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/klassFactory.cpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/modules.cpp ! src/hotspot/share/classfile/packageEntry.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/symbolTable.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/vmSymbols.hpp + src/hotspot/share/code/SCCache.cpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/codeCache.hpp ! src/hotspot/share/code/debugInfoRec.cpp ! src/hotspot/share/code/dependencies.cpp ! src/hotspot/share/code/dependencyContext.cpp ! src/hotspot/share/code/dependencyContext.hpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/oopRecorder.cpp ! src/hotspot/share/code/relocInfo.cpp ! src/hotspot/share/compiler/compilationPolicy.cpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/compiler/compileBroker.hpp ! src/hotspot/share/compiler/compileTask.cpp ! src/hotspot/share/compiler/compileTask.hpp ! src/hotspot/share/compiler/compilerOracle.cpp ! src/hotspot/share/compiler/disassembler.cpp ! src/hotspot/share/compiler/methodMatcher.cpp ! src/hotspot/share/compiler/oopMap.cpp + src/hotspot/share/compiler/precompiler.cpp + src/hotspot/share/compiler/recompilationPolicy.cpp ! src/hotspot/share/gc/g1/c1/g1BarrierSetC1.cpp ! src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp ! src/hotspot/share/gc/shared/barrierSetNMethod.cpp ! src/hotspot/share/gc/shared/collectorCounters.cpp ! src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp ! src/hotspot/share/interpreter/abstractInterpreter.cpp ! src/hotspot/share/interpreter/bytecodeHistogram.cpp ! src/hotspot/share/interpreter/bytecodeTracer.cpp ! src/hotspot/share/interpreter/interpreterRuntime.cpp ! src/hotspot/share/interpreter/interpreterRuntime.hpp ! src/hotspot/share/interpreter/linkResolver.cpp ! src/hotspot/share/interpreter/rewriter.cpp ! src/hotspot/share/interpreter/templateInterpreter.cpp ! src/hotspot/share/interpreter/templateInterpreterGenerator.cpp ! src/hotspot/share/interpreter/zero/zeroInterpreterGenerator.cpp ! src/hotspot/share/jfr/instrumentation/jfrEventClassTransformer.cpp ! src/hotspot/share/jvmci/jvmciCompiler.cpp ! src/hotspot/share/jvmci/jvmciRuntime.cpp ! src/hotspot/share/memory/allocation.cpp ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/memory/universe.cpp ! src/hotspot/share/nmt/virtualMemoryTracker.cpp ! src/hotspot/share/oops/array.hpp ! src/hotspot/share/oops/compressedOops.cpp ! src/hotspot/share/oops/constMethod.cpp ! src/hotspot/share/oops/constantPool.cpp ! src/hotspot/share/oops/cpCache.cpp ! src/hotspot/share/oops/instanceKlass.cpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/methodCounters.cpp ! src/hotspot/share/oops/methodData.cpp + src/hotspot/share/oops/recompilationSchedule.cpp ! src/hotspot/share/oops/resolvedMethodEntry.cpp + src/hotspot/share/oops/trainingData.cpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/compile.hpp ! src/hotspot/share/opto/doCall.cpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/opto/output.cpp ! src/hotspot/share/opto/parse.hpp ! src/hotspot/share/opto/parse1.cpp ! src/hotspot/share/opto/parse2.cpp ! src/hotspot/share/opto/parseHelper.cpp ! src/hotspot/share/opto/rootnode.cpp ! src/hotspot/share/opto/runtime.cpp ! src/hotspot/share/opto/runtime.hpp ! src/hotspot/share/opto/type.cpp ! src/hotspot/share/opto/vectorIntrinsics.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/jvmtiEnv.cpp ! src/hotspot/share/prims/methodHandles.cpp ! src/hotspot/share/prims/perf.cpp ! src/hotspot/share/prims/unsafe.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/deoptimization.cpp ! src/hotspot/share/runtime/flags/jvmFlag.cpp ! src/hotspot/share/runtime/init.cpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/javaThread.cpp + src/hotspot/share/runtime/methodDetails.cpp ! src/hotspot/share/runtime/mutex.cpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/mutexLocker.hpp ! src/hotspot/share/runtime/perfData.cpp + src/hotspot/share/runtime/runtimeUpcallNop.cpp + src/hotspot/share/runtime/runtimeUpcalls.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/stubRoutines.cpp ! src/hotspot/share/runtime/thread.cpp ! src/hotspot/share/runtime/threads.cpp ! src/hotspot/share/runtime/timer.cpp ! src/hotspot/share/runtime/timerTrace.cpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/hotspot/share/runtime/vmThread.cpp ! src/hotspot/share/services/diagnosticCommand.cpp ! src/hotspot/share/services/management.cpp ! src/hotspot/share/utilities/constantTag.cpp ! src/hotspot/share/utilities/ostream.cpp ! src/hotspot/share/utilities/xmlstream.cpp ! src/hotspot/share/utilities/zipLibrary.cpp ! src/java.base/share/classes/java/lang/System.java ! src/java.base/share/classes/java/lang/module/ModuleDescriptor.java ! src/java.base/share/classes/jdk/internal/misc/CDS.java ! src/java.base/share/native/libzip/zip_util.c ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Threads.java ! test/hotspot/jtreg/ProblemList.txt From duke at openjdk.org Sat Feb 8 00:34:22 2025 From: duke at openjdk.org (duke) Date: Sat, 8 Feb 2025 00:34:22 GMT Subject: git: openjdk/leyden: hermetic-java-runtime: 75 new changesets Message-ID: Changeset: 305bbdae Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-01 14:06:48 +0000 URL: https://git.openjdk.org/leyden/commit/305bbdae7fe40e33cf2baa100c134bd85ecaa553 8348402: PerfDataManager stalls shutdown for 1ms Reviewed-by: dholmes, pchilanomate, coleenp ! src/hotspot/share/runtime/objectMonitor.cpp ! src/hotspot/share/runtime/objectMonitor.hpp ! src/hotspot/share/runtime/perfData.cpp ! src/hotspot/share/runtime/perfData.hpp ! src/hotspot/share/runtime/synchronizer.cpp Changeset: 2cce5eeb Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-02 02:46:16 +0000 URL: https://git.openjdk.org/leyden/commit/2cce5eeb092b68b4e4ce6a8289a8aa567f47c973 8349142: [JMH] compiler.MergeLoadBench.getCharBV fails Reviewed-by: liach ! test/micro/org/openjdk/bench/vm/compiler/MergeLoadBench.java Changeset: 9aa6d09b Branch: hermetic-java-runtime Author: Aggelos Biboudis Date: 2025-02-03 09:08:25 +0000 URL: https://git.openjdk.org/leyden/commit/9aa6d09bf74110bf4f5756d7c3b106558042102f 8326485: Assertion due to Type.addMetadata adding annotations to already-annotated type Reviewed-by: jlahoda ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/TypeAnnotations.java + test/langtools/tools/javac/T8326485.java + test/langtools/tools/javac/T8326485.out Changeset: 6f4fc821 Branch: hermetic-java-runtime Author: Alexander Zvegintsev Date: 2025-02-03 11:14:14 +0000 URL: https://git.openjdk.org/leyden/commit/6f4fc82149b52dd91289fe42def7d1cacad31212 8348675: TrayIcon tests fail in Ubuntu 24.10 Wayland Reviewed-by: aivanov, dnguyen ! test/jdk/java/awt/TrayIcon/ActionCommand/ActionCommand.java ! test/jdk/java/awt/TrayIcon/TrayIconMouseTest/TrayIconMouseTest.java ! test/jdk/java/awt/TrayIcon/TrayIconPopup/TrayIconPopupClickTest.java ! test/jdk/java/awt/TrayIcon/TrayIconPopup/TrayIconPopupTest.java Changeset: 3f1d9b57 Branch: hermetic-java-runtime Author: Hamlin Li Date: 2025-02-03 12:33:31 +0000 URL: https://git.openjdk.org/leyden/commit/3f1d9b573546685215af06031656efe6f1429caf 8348575: SpinLockT is typedef'ed but unused Reviewed-by: dholmes ! src/hotspot/share/runtime/thread.cpp Changeset: d330421d Branch: hermetic-java-runtime Author: Coleen Phillimore Date: 2025-02-03 13:55:00 +0000 URL: https://git.openjdk.org/leyden/commit/d330421d28b62eae19114994d7266e9c0038dd94 8337548: Parallel class loading can pass is_superclass true for interfaces Reviewed-by: iklam ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionary.hpp Changeset: a57c9b10 Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-03 14:25:47 +0000 URL: https://git.openjdk.org/leyden/commit/a57c9b101a7fdb08ed1c8ca31ab0d4cc0040f1ba 8349184: [JMH] jdk.incubator.vector.ColumnFilterBenchmark.filterDoubleColumn fails on linux-aarch64 Reviewed-by: haosun, aph ! test/micro/org/openjdk/bench/jdk/incubator/vector/ColumnFilterBenchmark.java Changeset: bb837d2f Branch: hermetic-java-runtime Author: Tom Rodriguez Date: 2025-02-03 17:04:55 +0000 URL: https://git.openjdk.org/leyden/commit/bb837d2f9b636c05ff0c7733bc3d06c002974c17 8342775: [Graal] java/util/concurrent/locks/Lock/OOMEInAQS.java fails OOME thrown from the UncaughtExceptionHandler Reviewed-by: jpai, dholmes ! test/jdk/java/util/concurrent/locks/Lock/OOMEInAQS.java ! test/jdk/java/util/concurrent/locks/StampedLock/OOMEInStampedLock.java Changeset: 618c5eb2 Branch: hermetic-java-runtime Author: Jaikiran Pai Date: 2025-02-03 18:21:33 +0000 URL: https://git.openjdk.org/leyden/commit/618c5eb27b4c719afd577b690e6bcb21a45fcb0d 8349183: [BACKOUT] Optimization for StringBuilder append boolean & null 8349239: [BACKOUT] Reuse StringLatin1::putCharsAt and StringUTF16::putCharsAt Reviewed-by: redestad, liach ! src/java.base/share/classes/java/lang/AbstractStringBuilder.java ! src/java.base/share/classes/java/lang/StringConcatHelper.java ! src/java.base/share/classes/java/lang/StringLatin1.java ! src/java.base/share/classes/java/lang/StringUTF16.java ! test/hotspot/jtreg/compiler/patches/java.base/java/lang/Helper.java ! test/micro/org/openjdk/bench/java/lang/StringBuilders.java Changeset: 43979fb1 Branch: hermetic-java-runtime Author: Ben Perez Date: 2025-02-03 22:14:38 +0000 URL: https://git.openjdk.org/leyden/commit/43979fb1be424157b33268db078d345b4da29119 8347428: Avoid using secret-key in specifications Reviewed-by: mullan ! src/java.base/share/classes/com/sun/crypto/provider/JceKeyStore.java ! src/java.base/share/classes/com/sun/crypto/provider/SunJCE.java ! src/java.base/share/classes/javax/crypto/SecretKeyFactory.java ! src/java.base/share/classes/javax/crypto/SecretKeyFactorySpi.java ! src/java.base/share/classes/javax/crypto/spec/PBEKeySpec.java ! src/java.base/share/classes/javax/crypto/spec/SecretKeySpec.java ! test/jdk/com/sun/crypto/provider/CICO/PBEFunc/AbstractPBEWrapper.java Changeset: 9b495972 Branch: hermetic-java-runtime Author: Coleen Phillimore Date: 2025-02-03 22:48:28 +0000 URL: https://git.openjdk.org/leyden/commit/9b49597244f898400222cfc252f50a2401ca3e2f 8334320: Replace vmTestbase/metaspace/share/TriggerUnloadingWithWhiteBox.java with ClassUnloadCommon from testlibrary Reviewed-by: dholmes, lmesnik + test/hotspot/jtreg/vmTestbase/metaspace/share/TriggerUnloadingWithFullGC.java - test/hotspot/jtreg/vmTestbase/metaspace/share/TriggerUnloadingWithWhiteBox.java ! test/hotspot/jtreg/vmTestbase/metaspace/staticReferences/StaticReferences.java ! test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/StressHierarchyBaseClass.java Changeset: 7ea176d7 Branch: hermetic-java-runtime Author: Amit Kumar Date: 2025-02-04 03:05:00 +0000 URL: https://git.openjdk.org/leyden/commit/7ea176d79c126c69cea5631d6542cd42bd8b11d9 8349193: compiler/intrinsics/TestContinuationPinningAndEA.java missing @requires vm.continuations Reviewed-by: chagedorn ! test/hotspot/jtreg/compiler/intrinsics/TestContinuationPinningAndEA.java Changeset: c545a3e0 Branch: hermetic-java-runtime Author: Christian Hagedorn Date: 2025-02-04 07:33:34 +0000 URL: https://git.openjdk.org/leyden/commit/c545a3e028ad0760ed2f996e8bb7c56d28e4570a 8346774: Use Predicate classes instead of Node classes Reviewed-by: epeter, kvn ! src/hotspot/share/opto/predicates.cpp ! src/hotspot/share/opto/predicates.hpp Changeset: beae8843 Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-04 08:10:49 +0000 URL: https://git.openjdk.org/leyden/commit/beae8843b9b2433af5e9fbe420b17e663cbdb960 8349150: Support precompiled headers on AIX Reviewed-by: jkern, erikj ! make/hotspot/lib/CompileJvm.gmk ! make/hotspot/lib/JvmOverrideFiles.gmk Changeset: 81126c20 Branch: hermetic-java-runtime Author: Per Minborg Date: 2025-02-04 11:00:54 +0000 URL: https://git.openjdk.org/leyden/commit/81126c20cbcab577d82e690d9cf1c1b738754a07 8349238: Some more FFM benchmarks are broken Reviewed-by: mcimadamore ! test/micro/org/openjdk/bench/java/lang/foreign/xor/XorTest.java Changeset: d699aba2 Branch: hermetic-java-runtime Author: Volkan Yazici Date: 2025-02-04 13:56:25 +0000 URL: https://git.openjdk.org/leyden/commit/d699aba26f65ce1941bfbaaf1918c987dd01727e 8349135: Add tests for HttpRequest.Builder.copy() Reviewed-by: jpai, dfuchs ! test/jdk/java/net/httpclient/HttpRequestBuilderTest.java Changeset: e91a6ec4 Branch: hermetic-java-runtime Author: Fei Yang Date: 2025-02-04 14:03:07 +0000 URL: https://git.openjdk.org/leyden/commit/e91a6ec49c80ea53bb6f1eb43c924f188803de7e 8347489: RISC-V: Misaligned memory access with COH Reviewed-by: mli, vkempik ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/stubGenerator_riscv.cpp Changeset: beb43e26 Branch: hermetic-java-runtime Author: Per Minborg Date: 2025-02-04 14:10:42 +0000 URL: https://git.openjdk.org/leyden/commit/beb43e2633900bb9ab3c975376fe5860b6d054e0 8349343: Add missing copyright messages in FFM benchmarks Reviewed-by: jvernee ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayCriticalXorOpImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayElementsXorOpImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayForeignXorOpCriticalImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayForeignXorOpImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayForeignXorOpInitImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayRegionXorOpImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/XorOp.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/libjnitest.c Changeset: b985347c Branch: hermetic-java-runtime Author: Ioi Lam Date: 2025-02-04 16:08:00 +0000 URL: https://git.openjdk.org/leyden/commit/b985347c2383a7a637ffa9a4a8687f7f7cde1369 8348349: Refactor CDSConfig::is_dumping_heap() Reviewed-by: ccheung, matsaave ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConfig.hpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/prims/whitebox.cpp ! test/hotspot/jtreg/runtime/cds/appcds/sharedStrings/IncompatibleOptions.java ! test/jtreg-ext/requires/VMProps.java Changeset: ee4caa41 Branch: hermetic-java-runtime Author: Jamil Nimeh Date: 2025-02-04 16:28:04 +0000 URL: https://git.openjdk.org/leyden/commit/ee4caa4180e76911ee75148583c2923f847f8605 8349106: Change ChaCha20 intrinsic to use quarter-round parallel implementation on aarch64 Reviewed-by: aph ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp Changeset: 250ff86d Branch: hermetic-java-runtime Author: Justin Lu Date: 2025-02-04 17:07:01 +0000 URL: https://git.openjdk.org/leyden/commit/250ff86dc86f73dbf7c944d9b5a792c4bdfeef0d 8349000: Performance improvement for Currency.isPastCutoverDate(String) Reviewed-by: naoto, aturbanov ! src/java.base/share/classes/java/util/Currency.java Changeset: bad39b6d Branch: hermetic-java-runtime Author: Satyen Subramaniam Committer: Paul Hohensee Date: 2025-02-04 17:19:19 +0000 URL: https://git.openjdk.org/leyden/commit/bad39b6d8892ba9b86bc81bf01108a1df617defb 8348610: GenShen: TestShenandoahEvacuationInformationEvent failed with setRegions >= regionsFreed: expected 1 >= 57 Reviewed-by: wkemper, phh ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahGenerationalHeuristics.cpp ! src/hotspot/share/gc/shenandoah/shenandoahEvacInfo.hpp ! src/hotspot/share/gc/shenandoah/shenandoahTrace.cpp ! src/hotspot/share/jfr/metadata/metadata.xml ! test/jdk/jdk/jfr/event/gc/detailed/TestShenandoahEvacuationInformationEvent.java Changeset: d222c186 Branch: hermetic-java-runtime Author: Brent Christian Date: 2025-02-04 22:37:31 +0000 URL: https://git.openjdk.org/leyden/commit/d222c186a6c5a282e9ef143fac3568351ad7b9d7 8349107: Remove RMI finalizers Reviewed-by: rriggs, vklang, djelinski, smarks ! src/java.rmi/share/classes/sun/rmi/log/LogInputStream.java ! src/jdk.naming.rmi/share/classes/com/sun/jndi/rmi/registry/RegistryContext.java Changeset: 9d23de58 Branch: hermetic-java-runtime Author: Ben Perez Date: 2025-02-04 23:13:16 +0000 URL: https://git.openjdk.org/leyden/commit/9d23de58d167ff7d23ee1b8da675ec1b26b885f9 8184352: Remove Sun provider information from KeyPairGenerator javadoc Reviewed-by: mullan ! src/java.base/share/classes/java/security/KeyPairGenerator.java Changeset: a51e6699 Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-05 02:18:01 +0000 URL: https://git.openjdk.org/leyden/commit/a51e6699b497564de65620a36dc38437ca87cb32 8349200: [JMH] time.format.ZonedDateTimeFormatterBenchmark fails Reviewed-by: naoto, jlu ! test/micro/org/openjdk/bench/java/time/format/ZonedDateTimeFormatterBenchmark.java Changeset: 09269497 Branch: hermetic-java-runtime Author: Jan Lahoda Date: 2025-02-05 06:44:36 +0000 URL: https://git.openjdk.org/leyden/commit/09269497a27c732ce4644d0bb95e0380162398c9 8347629: Test FailOverDirectExecutionControlTest.java fails with -Xcomp Reviewed-by: liach ! test/langtools/jdk/jshell/FailOverDirectExecutionControlTest.java Changeset: 40603a5b Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-05 08:05:56 +0000 URL: https://git.openjdk.org/leyden/commit/40603a5bf039eef03c157bfc49ac8ea2229a94de 8349214: Improve size optimization flags for MSVC builds Reviewed-by: djelinski, ihse ! make/autoconf/flags-cflags.m4 Changeset: 66a38984 Branch: hermetic-java-runtime Author: Bhavana Kilambi Committer: Aleksey Shipilev Date: 2025-02-05 08:37:21 +0000 URL: https://git.openjdk.org/leyden/commit/66a3898448023f1f22da7d7cbcf4c79a0eb59963 8348659: AArch64: IR rule failure with compiler/loopopts/superword/TestSplitPacks.java Reviewed-by: shade, epeter ! test/hotspot/jtreg/compiler/loopopts/superword/TestSplitPacks.java Changeset: 61465883 Branch: hermetic-java-runtime Author: Magnus Ihse Bursie Date: 2025-02-05 11:17:08 +0000 URL: https://git.openjdk.org/leyden/commit/61465883b465a184e31e7a03e2603d29ab4815a4 8348190: Framework for tracing makefile inclusion and parsing Reviewed-by: erikj ! .github/actions/get-gtest/action.yml ! .github/actions/get-jtreg/action.yml ! Makefile ! make/Bundles.gmk ! make/CompileCommands.gmk ! make/CompileDemos.gmk ! make/CompileInterimLangtools.gmk ! make/CompileJavaModules.gmk ! make/CompileModuleTools.gmk ! make/CompileToolsHotspot.gmk ! make/CompileToolsJdk.gmk ! make/CopyImportModules.gmk ! make/CopyInterimTZDB.gmk ! make/Coverage.gmk ! make/CreateJmods.gmk ! make/Docs.gmk ! make/Doctor.gmk ! make/ExplodedImageOptimize.gmk ! make/GenerateLinkOptData.gmk ! make/GenerateModuleSummary.gmk ! make/Global.gmk ! make/GraalBuilderImage.gmk ! make/Hsdis.gmk ! make/Images.gmk ! make/Init.gmk ! make/InitSupport.gmk ! make/InterimImage.gmk ! make/JrtfsJar.gmk ! make/MacBundles.gmk ! make/Main.gmk ! make/MainSupport.gmk ! make/ModuleTools.gmk ! make/ModuleWrapper.gmk ! make/PreInit.gmk ! make/PreInitSupport.gmk ! make/ReleaseFile.gmk ! make/RunTests.gmk ! make/RunTestsPrebuilt.gmk + make/RunTestsPrebuiltFindTests.gmk ! make/SourceRevision.gmk ! make/StaticLibs.gmk ! make/StaticLibsImage.gmk ! make/TestImage.gmk ! make/ToolsHotspot.gmk ! make/ToolsJdk.gmk ! make/ToolsLangtools.gmk ! make/UpdateBuildDocs.gmk ! make/UpdateSleefSource.gmk ! make/UpdateX11Wrappers.gmk ! make/ZipSecurity.gmk ! make/ZipSource.gmk ! make/common/CopyFiles.gmk ! make/common/DebugInfoUtils.gmk ! make/common/Execute.gmk ! make/common/FileUtils.gmk ! make/common/FindTests.gmk ! make/common/JarArchive.gmk ! make/common/JavaCompilation.gmk ! make/common/JdkNativeCompilation.gmk ! make/common/LogUtils.gmk ! make/common/MakeBase.gmk + make/common/MakeFileEnd.gmk + make/common/MakeFileStart.gmk ! make/common/MakeIO.gmk + make/common/MakeIncludeEnd.gmk + make/common/MakeIncludeStart.gmk + make/common/MakeSnippetEnd.gmk + make/common/MakeSnippetStart.gmk ! make/common/Modules.gmk ! make/common/NativeCompilation.gmk ! make/common/ProcessMarkdown.gmk ! make/common/TestFilesCompilation.gmk ! make/common/TextFileProcessing.gmk ! make/common/Utils.gmk ! make/common/ZipArchive.gmk ! make/common/modules/CopyCommon.gmk ! make/common/modules/GendataCommon.gmk ! make/common/modules/GensrcCommon.gmk ! make/common/modules/GensrcModuleInfo.gmk ! make/common/modules/GensrcProperties.gmk ! make/common/modules/LauncherCommon.gmk ! make/common/modules/LibCommon.gmk ! make/common/native/CompileFile.gmk ! make/common/native/DebugSymbols.gmk ! make/common/native/Flags.gmk ! make/common/native/Link.gmk ! make/common/native/LinkMicrosoft.gmk ! make/common/native/Paths.gmk ! make/hotspot/CopyToExplodedJdk.gmk ! make/hotspot/HotspotCommon.gmk ! make/hotspot/gensrc/GenerateSources.gmk ! make/hotspot/gensrc/GensrcAdlc.gmk ! make/hotspot/gensrc/GensrcDtrace.gmk ! make/hotspot/gensrc/GensrcJfr.gmk ! make/hotspot/gensrc/GensrcJvmti.gmk ! make/hotspot/lib/CompileGtest.gmk ! make/hotspot/lib/CompileJvm.gmk ! make/hotspot/lib/CompileLibraries.gmk ! make/hotspot/lib/JvmFeatures.gmk ! make/hotspot/lib/JvmFlags.gmk ! make/hotspot/lib/JvmOverrideFiles.gmk ! make/hotspot/test/GtestImage.gmk ! make/ide/eclipse/CreateWorkspace.gmk ! make/ide/idea/jdk/IdeaGenConfig.gmk ! make/ide/visualstudio/hotspot/CreateVSProject.gmk ! make/ide/vscode/hotspot/CreateVSCodeProject.gmk ! make/ide/xcode/hotspot/CreateXcodeProject.gmk ! make/modules/java.base/Copy.gmk ! make/modules/java.base/Gendata.gmk ! make/modules/java.base/Gensrc.gmk ! make/modules/java.base/Java.gmk ! make/modules/java.base/Launcher.gmk ! make/modules/java.base/Lib.gmk ! make/modules/java.base/gendata/GendataBlockedCerts.gmk ! make/modules/java.base/gendata/GendataBreakIterator.gmk ! make/modules/java.base/gendata/GendataCryptoPolicy.gmk ! make/modules/java.base/gendata/GendataPublicSuffixList.gmk ! make/modules/java.base/gendata/GendataTZDB.gmk ! make/modules/java.base/gensrc/GensrcBuffer.gmk ! make/modules/java.base/gensrc/GensrcCharacterData.gmk ! make/modules/java.base/gensrc/GensrcCharsetCoder.gmk ! make/modules/java.base/gensrc/GensrcCharsetMapping.gmk ! make/modules/java.base/gensrc/GensrcExceptions.gmk ! make/modules/java.base/gensrc/GensrcMisc.gmk ! make/modules/java.base/gensrc/GensrcModuleLoaderMap.gmk ! make/modules/java.base/gensrc/GensrcRegex.gmk ! make/modules/java.base/gensrc/GensrcScopedMemoryAccess.gmk ! make/modules/java.base/gensrc/GensrcVarHandles.gmk ! make/modules/java.base/lib/CoreLibraries.gmk ! make/modules/java.compiler/Java.gmk ! make/modules/java.datatransfer/Java.gmk ! make/modules/java.desktop/Copy.gmk ! make/modules/java.desktop/Gendata.gmk ! make/modules/java.desktop/Gensrc.gmk ! make/modules/java.desktop/Java.gmk ! make/modules/java.desktop/Lib.gmk ! make/modules/java.desktop/gendata/GendataFontConfig.gmk ! make/modules/java.desktop/gendata/GendataHtml32dtd.gmk ! make/modules/java.desktop/gensrc/GensrcIcons.gmk ! make/modules/java.desktop/gensrc/GensrcSwing.gmk ! make/modules/java.desktop/gensrc/GensrcX11Wrappers.gmk ! make/modules/java.desktop/lib/AwtLibraries.gmk ! make/modules/java.desktop/lib/ClientLibraries.gmk ! make/modules/java.instrument/Java.gmk ! make/modules/java.instrument/Lib.gmk ! make/modules/java.logging/Copy.gmk ! make/modules/java.logging/Gensrc.gmk ! make/modules/java.logging/Java.gmk ! make/modules/java.management.rmi/Java.gmk ! make/modules/java.management/Java.gmk ! make/modules/java.management/Lib.gmk ! make/modules/java.naming/Java.gmk ! make/modules/java.prefs/Java.gmk ! make/modules/java.prefs/Lib.gmk ! make/modules/java.rmi/Java.gmk ! make/modules/java.rmi/Launcher.gmk ! make/modules/java.rmi/Lib.gmk ! make/modules/java.scripting/Java.gmk ! make/modules/java.scripting/Launcher.gmk ! make/modules/java.security.jgss/Java.gmk ! make/modules/java.security.jgss/Launcher.gmk ! make/modules/java.security.jgss/Lib.gmk ! make/modules/java.security.sasl/Java.gmk ! make/modules/java.smartcardio/Java.gmk ! make/modules/java.smartcardio/Lib.gmk ! make/modules/java.sql.rowset/Java.gmk ! make/modules/java.sql/Java.gmk ! make/modules/java.transaction.xa/Java.gmk ! make/modules/java.xml.crypto/Java.gmk ! make/modules/java.xml/Copy.gmk ! make/modules/java.xml/Java.gmk ! make/modules/jdk.accessibility/Copy.gmk ! make/modules/jdk.accessibility/Java.gmk ! make/modules/jdk.accessibility/Launcher.gmk ! make/modules/jdk.accessibility/Lib.gmk ! make/modules/jdk.attach/Lib.gmk ! make/modules/jdk.charsets/Gensrc.gmk ! make/modules/jdk.charsets/Java.gmk ! make/modules/jdk.compiler/Gendata.gmk ! make/modules/jdk.compiler/Gensrc.gmk ! make/modules/jdk.compiler/Java.gmk ! make/modules/jdk.compiler/Launcher.gmk ! make/modules/jdk.crypto.cryptoki/Java.gmk ! make/modules/jdk.crypto.cryptoki/Lib.gmk ! make/modules/jdk.crypto.mscapi/Java.gmk ! make/modules/jdk.crypto.mscapi/Lib.gmk ! make/modules/jdk.dev/Java.gmk ! make/modules/jdk.dynalink/Java.gmk ! make/modules/jdk.editpad/Java.gmk ! make/modules/jdk.hotspot.agent/Gensrc.gmk ! make/modules/jdk.hotspot.agent/Java.gmk ! make/modules/jdk.hotspot.agent/Launcher.gmk ! make/modules/jdk.hotspot.agent/Lib.gmk ! make/modules/jdk.httpserver/Gensrc.gmk ! make/modules/jdk.httpserver/Java.gmk ! make/modules/jdk.httpserver/Jmod.gmk ! make/modules/jdk.httpserver/Launcher.gmk ! make/modules/jdk.incubator.vector/Java.gmk ! make/modules/jdk.incubator.vector/Lib.gmk ! make/modules/jdk.internal.jvmstat/Java.gmk ! make/modules/jdk.internal.le/Java.gmk ! make/modules/jdk.internal.md/Java.gmk ! make/modules/jdk.internal.opt/Java.gmk ! make/modules/jdk.internal.vm.ci/Java.gmk ! make/modules/jdk.jartool/Gensrc.gmk ! make/modules/jdk.jartool/Java.gmk ! make/modules/jdk.jartool/Jmod.gmk ! make/modules/jdk.jartool/Launcher.gmk ! make/modules/jdk.javadoc/Copy.gmk ! make/modules/jdk.javadoc/Gendata.gmk ! make/modules/jdk.javadoc/Gensrc.gmk ! make/modules/jdk.javadoc/Java.gmk ! make/modules/jdk.javadoc/Launcher.gmk ! make/modules/jdk.jcmd/Java.gmk ! make/modules/jdk.jcmd/Launcher.gmk ! make/modules/jdk.jconsole/Java.gmk ! make/modules/jdk.jconsole/Launcher.gmk ! make/modules/jdk.jdeps/Gensrc.gmk ! make/modules/jdk.jdeps/Java.gmk ! make/modules/jdk.jdeps/Launcher.gmk ! make/modules/jdk.jdi/Gensrc.gmk ! make/modules/jdk.jdi/Java.gmk ! make/modules/jdk.jdi/Launcher.gmk ! make/modules/jdk.jdi/Lib.gmk ! make/modules/jdk.jdwp.agent/Copy.gmk ! make/modules/jdk.jdwp.agent/Lib.gmk ! make/modules/jdk.jfr/Copy.gmk ! make/modules/jdk.jfr/Gendata.gmk ! make/modules/jdk.jfr/Java.gmk ! make/modules/jdk.jfr/Jmod.gmk ! make/modules/jdk.jfr/Launcher.gmk ! make/modules/jdk.jlink/Gensrc.gmk ! make/modules/jdk.jlink/Launcher.gmk ! make/modules/jdk.jpackage/Gensrc.gmk ! make/modules/jdk.jpackage/Java.gmk ! make/modules/jdk.jpackage/Jmod.gmk ! make/modules/jdk.jpackage/Launcher.gmk ! make/modules/jdk.jpackage/Lib.gmk ! make/modules/jdk.jshell/Gensrc.gmk ! make/modules/jdk.jshell/Java.gmk ! make/modules/jdk.jshell/Jmod.gmk ! make/modules/jdk.jshell/Launcher.gmk ! make/modules/jdk.jstatd/Jmod.gmk ! make/modules/jdk.jstatd/Launcher.gmk ! make/modules/jdk.localedata/Gensrc.gmk ! make/modules/jdk.localedata/Java.gmk ! make/modules/jdk.management.agent/Copy.gmk ! make/modules/jdk.management.agent/Gensrc.gmk ! make/modules/jdk.management.agent/Lib.gmk ! make/modules/jdk.management/Java.gmk ! make/modules/jdk.management/Lib.gmk ! make/modules/jdk.net/Lib.gmk ! make/modules/jdk.sctp/Java.gmk ! make/modules/jdk.sctp/Lib.gmk ! make/modules/jdk.security.auth/Java.gmk ! make/modules/jdk.security.auth/Lib.gmk ! make/modules/sun.charsets/Java.gmk ! make/test/BuildFailureHandler.gmk ! make/test/BuildJtregTestThreadFactory.gmk ! make/test/BuildMicrobenchmark.gmk ! make/test/BuildTestLib.gmk ! make/test/BuildTestLibNative.gmk ! make/test/JtregNativeHotspot.gmk ! make/test/JtregNativeJdk.gmk ! make/test/JtregNativeLibTest.gmk ! test/make/TestCompileCommands.gmk ! test/make/TestCopyFiles.gmk ! test/make/TestFixDepsFile.gmk ! test/make/TestIdea.gmk ! test/make/TestJavaCompilation.gmk ! test/make/TestMake.gmk ! test/make/TestMakeBase.gmk ! test/make/UtilsForTests.gmk Changeset: 19399d27 Branch: hermetic-java-runtime Author: Emanuel Peter Date: 2025-02-05 12:58:43 +0000 URL: https://git.openjdk.org/leyden/commit/19399d271ef00f925232fbbe9087b5772f2fca01 8348572: C2 compilation asserts due to unexpected irreducible loop Reviewed-by: thartmann, kvn ! src/hotspot/share/opto/c2_globals.hpp ! src/hotspot/share/opto/cfgnode.cpp ! src/hotspot/share/opto/cfgnode.hpp ! src/hotspot/share/opto/loopnode.cpp + test/hotspot/jtreg/compiler/loopopts/TestSplitIfNewIrreducibleLoop.java Changeset: 2ff8440c Branch: hermetic-java-runtime Author: Per Minborg Date: 2025-02-05 13:48:34 +0000 URL: https://git.openjdk.org/leyden/commit/2ff8440c76bb090634ecf4e6faa523498fd1d9f3 8349344: Clarify documentation of Arena.ofConfined Reviewed-by: jvernee, jpai, mcimadamore ! src/java.base/share/classes/java/lang/foreign/Arena.java Changeset: 6b994cd8 Branch: hermetic-java-runtime Author: Roland Westrelin Date: 2025-02-05 13:54:35 +0000 URL: https://git.openjdk.org/leyden/commit/6b994cd8ccba4f5d0199cb2925f0a6b5450ac115 8333697: C2: Hit MemLimit in PhaseCFG::global_code_motion Reviewed-by: thartmann, kvn ! src/hotspot/share/opto/indexSet.cpp ! src/hotspot/share/opto/indexSet.hpp ! test/hotspot/jtreg/compiler/escapeAnalysis/TestFindInstMemRecursion.java Changeset: b9b62a02 Branch: hermetic-java-runtime Author: Serguei Spitsyn Date: 2025-02-05 16:03:39 +0000 URL: https://git.openjdk.org/leyden/commit/b9b62a02488ee9c1a5a7a9ede87505781dfc0f73 8346792: serviceability/jvmti/vthread/GetThreadState/GetThreadState.java testObjectWaitMillis failed Reviewed-by: dholmes, pchilanomate ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/runtime/objectMonitor.cpp ! src/hotspot/share/services/threadService.hpp Changeset: 2f2f7cf0 Branch: hermetic-java-runtime Author: Mark Powers Date: 2025-02-05 18:04:00 +0000 URL: https://git.openjdk.org/leyden/commit/2f2f7cf0dddd82f11d6dfc4f8a5401ec1c5629dc 8349084: Update vectors used in several PQC benchmarks Reviewed-by: weijun ! test/micro/org/openjdk/bench/java/security/HSS.java ! test/micro/org/openjdk/bench/java/security/MLDSA.java ! test/micro/org/openjdk/bench/java/security/MLKEMBench.java Changeset: 82bc0a7f Branch: hermetic-java-runtime Author: Mikhail Yankelevich Committer: Weijun Wang Date: 2025-02-05 18:23:25 +0000 URL: https://git.openjdk.org/leyden/commit/82bc0a7f8c7ee63d2f8c3db57dc22f39963ae022 8344316: security/auth/callback/TextCallbackHandler/Password.java make runnable with JTReg and add the UI Reviewed-by: weijun ! test/jdk/com/sun/security/auth/callback/TextCallbackHandler/Password.java Changeset: 379c3f99 Branch: hermetic-java-runtime Author: Damon Nguyen Date: 2025-02-05 18:43:19 +0000 URL: https://git.openjdk.org/leyden/commit/379c3f99665829c5d8c373d1fb324dc7ef4d84cf 8347836: Disabled PopupMenu shows shortcuts on Mac Reviewed-by: azvegint, achung, kizune, abhiscxk ! test/jdk/java/awt/PopupMenu/PopupMenuVisuals.java Changeset: b499c827 Branch: hermetic-java-runtime Author: Brian Burkhalter Date: 2025-02-05 21:40:47 +0000 URL: https://git.openjdk.org/leyden/commit/b499c827a512fb209a806d95b97df0f5932a29c0 8349383: (fs) FileTreeWalker.next() superfluous null check of visit() return value Reviewed-by: djelinski ! src/java.base/share/classes/java/nio/file/FileTreeWalker.java Changeset: aad6664b Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-05 23:23:54 +0000 URL: https://git.openjdk.org/leyden/commit/aad6664bb6d2b311b3e0cb056afaa9b6534bdbbb 8333569: jpackage tests must run app launchers with retries on Linux only Reviewed-by: almatvee ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/HelloApp.java ! test/jdk/tools/jpackage/share/AppLauncherEnvTest.java ! test/jdk/tools/jpackage/windows/WinChildProcessTest.java Changeset: 89e5e7ab Branch: hermetic-java-runtime Author: Archie Cobbs Date: 2025-02-06 01:52:51 +0000 URL: https://git.openjdk.org/leyden/commit/89e5e7ab73472b7d02aac5b8b0c7e9f26db6ec32 8349155: The "log" parameter to Lint.logIfEnabled() is not needed Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Lint.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Flow.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassReader.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/processing/JavacFiler.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java Changeset: 5e1cc082 Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-06 02:27:43 +0000 URL: https://git.openjdk.org/leyden/commit/5e1cc0825938527bd7011ade8b237e34c821862c 8349504: Support platform-specific JUnit tests in jpackage Reviewed-by: almatvee ! test/jdk/tools/jpackage/junit/TEST.properties = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/AppImageFileTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/ApplicationLayoutTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/DeployParamsTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/DottedVersionTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/EnquoterTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/OverridableResourceTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/PathGroupTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/PlatformVersionTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/ToolValidatorTest.java Changeset: 64bd8d25 Branch: hermetic-java-runtime Author: David Holmes Date: 2025-02-06 02:51:12 +0000 URL: https://git.openjdk.org/leyden/commit/64bd8d2592d26e02a7f2f96caa47cba5e158aaa2 8349511: [BACKOUT] Framework for tracing makefile inclusion and parsing Reviewed-by: darcy, mikael ! .github/actions/get-gtest/action.yml ! .github/actions/get-jtreg/action.yml ! Makefile ! make/Bundles.gmk ! make/CompileCommands.gmk ! make/CompileDemos.gmk ! make/CompileInterimLangtools.gmk ! make/CompileJavaModules.gmk ! make/CompileModuleTools.gmk ! make/CompileToolsHotspot.gmk ! make/CompileToolsJdk.gmk ! make/CopyImportModules.gmk ! make/CopyInterimTZDB.gmk ! make/Coverage.gmk ! make/CreateJmods.gmk ! make/Docs.gmk ! make/Doctor.gmk ! make/ExplodedImageOptimize.gmk ! make/GenerateLinkOptData.gmk ! make/GenerateModuleSummary.gmk ! make/Global.gmk ! make/GraalBuilderImage.gmk ! make/Hsdis.gmk ! make/Images.gmk ! make/Init.gmk ! make/InitSupport.gmk ! make/InterimImage.gmk ! make/JrtfsJar.gmk ! make/MacBundles.gmk ! make/Main.gmk ! make/MainSupport.gmk ! make/ModuleTools.gmk ! make/ModuleWrapper.gmk ! make/PreInit.gmk ! make/PreInitSupport.gmk ! make/ReleaseFile.gmk ! make/RunTests.gmk ! make/RunTestsPrebuilt.gmk - make/RunTestsPrebuiltFindTests.gmk ! make/SourceRevision.gmk ! make/StaticLibs.gmk ! make/StaticLibsImage.gmk ! make/TestImage.gmk ! make/ToolsHotspot.gmk ! make/ToolsJdk.gmk ! make/ToolsLangtools.gmk ! make/UpdateBuildDocs.gmk ! make/UpdateSleefSource.gmk ! make/UpdateX11Wrappers.gmk ! make/ZipSecurity.gmk ! make/ZipSource.gmk ! make/common/CopyFiles.gmk ! make/common/DebugInfoUtils.gmk ! make/common/Execute.gmk ! make/common/FileUtils.gmk ! make/common/FindTests.gmk ! make/common/JarArchive.gmk ! make/common/JavaCompilation.gmk ! make/common/JdkNativeCompilation.gmk ! make/common/LogUtils.gmk ! make/common/MakeBase.gmk - make/common/MakeFileEnd.gmk - make/common/MakeFileStart.gmk ! make/common/MakeIO.gmk - make/common/MakeIncludeEnd.gmk - make/common/MakeIncludeStart.gmk - make/common/MakeSnippetEnd.gmk - make/common/MakeSnippetStart.gmk ! make/common/Modules.gmk ! make/common/NativeCompilation.gmk ! make/common/ProcessMarkdown.gmk ! make/common/TestFilesCompilation.gmk ! make/common/TextFileProcessing.gmk ! make/common/Utils.gmk ! make/common/ZipArchive.gmk ! make/common/modules/CopyCommon.gmk ! make/common/modules/GendataCommon.gmk ! make/common/modules/GensrcCommon.gmk ! make/common/modules/GensrcModuleInfo.gmk ! make/common/modules/GensrcProperties.gmk ! make/common/modules/LauncherCommon.gmk ! make/common/modules/LibCommon.gmk ! make/common/native/CompileFile.gmk ! make/common/native/DebugSymbols.gmk ! make/common/native/Flags.gmk ! make/common/native/Link.gmk ! make/common/native/LinkMicrosoft.gmk ! make/common/native/Paths.gmk ! make/hotspot/CopyToExplodedJdk.gmk ! make/hotspot/HotspotCommon.gmk ! make/hotspot/gensrc/GenerateSources.gmk ! make/hotspot/gensrc/GensrcAdlc.gmk ! make/hotspot/gensrc/GensrcDtrace.gmk ! make/hotspot/gensrc/GensrcJfr.gmk ! make/hotspot/gensrc/GensrcJvmti.gmk ! make/hotspot/lib/CompileGtest.gmk ! make/hotspot/lib/CompileJvm.gmk ! make/hotspot/lib/CompileLibraries.gmk ! make/hotspot/lib/JvmFeatures.gmk ! make/hotspot/lib/JvmFlags.gmk ! make/hotspot/lib/JvmOverrideFiles.gmk ! make/hotspot/test/GtestImage.gmk ! make/ide/eclipse/CreateWorkspace.gmk ! make/ide/idea/jdk/IdeaGenConfig.gmk ! make/ide/visualstudio/hotspot/CreateVSProject.gmk ! make/ide/vscode/hotspot/CreateVSCodeProject.gmk ! make/ide/xcode/hotspot/CreateXcodeProject.gmk ! make/modules/java.base/Copy.gmk ! make/modules/java.base/Gendata.gmk ! make/modules/java.base/Gensrc.gmk ! make/modules/java.base/Java.gmk ! make/modules/java.base/Launcher.gmk ! make/modules/java.base/Lib.gmk ! make/modules/java.base/gendata/GendataBlockedCerts.gmk ! make/modules/java.base/gendata/GendataBreakIterator.gmk ! make/modules/java.base/gendata/GendataCryptoPolicy.gmk ! make/modules/java.base/gendata/GendataPublicSuffixList.gmk ! make/modules/java.base/gendata/GendataTZDB.gmk ! make/modules/java.base/gensrc/GensrcBuffer.gmk ! make/modules/java.base/gensrc/GensrcCharacterData.gmk ! make/modules/java.base/gensrc/GensrcCharsetCoder.gmk ! make/modules/java.base/gensrc/GensrcCharsetMapping.gmk ! make/modules/java.base/gensrc/GensrcExceptions.gmk ! make/modules/java.base/gensrc/GensrcMisc.gmk ! make/modules/java.base/gensrc/GensrcModuleLoaderMap.gmk ! make/modules/java.base/gensrc/GensrcRegex.gmk ! make/modules/java.base/gensrc/GensrcScopedMemoryAccess.gmk ! make/modules/java.base/gensrc/GensrcVarHandles.gmk ! make/modules/java.base/lib/CoreLibraries.gmk ! make/modules/java.compiler/Java.gmk ! make/modules/java.datatransfer/Java.gmk ! make/modules/java.desktop/Copy.gmk ! make/modules/java.desktop/Gendata.gmk ! make/modules/java.desktop/Gensrc.gmk ! make/modules/java.desktop/Java.gmk ! make/modules/java.desktop/Lib.gmk ! make/modules/java.desktop/gendata/GendataFontConfig.gmk ! make/modules/java.desktop/gendata/GendataHtml32dtd.gmk ! make/modules/java.desktop/gensrc/GensrcIcons.gmk ! make/modules/java.desktop/gensrc/GensrcSwing.gmk ! make/modules/java.desktop/gensrc/GensrcX11Wrappers.gmk ! make/modules/java.desktop/lib/AwtLibraries.gmk ! make/modules/java.desktop/lib/ClientLibraries.gmk ! make/modules/java.instrument/Java.gmk ! make/modules/java.instrument/Lib.gmk ! make/modules/java.logging/Copy.gmk ! make/modules/java.logging/Gensrc.gmk ! make/modules/java.logging/Java.gmk ! make/modules/java.management.rmi/Java.gmk ! make/modules/java.management/Java.gmk ! make/modules/java.management/Lib.gmk ! make/modules/java.naming/Java.gmk ! make/modules/java.prefs/Java.gmk ! make/modules/java.prefs/Lib.gmk ! make/modules/java.rmi/Java.gmk ! make/modules/java.rmi/Launcher.gmk ! make/modules/java.rmi/Lib.gmk ! make/modules/java.scripting/Java.gmk ! make/modules/java.scripting/Launcher.gmk ! make/modules/java.security.jgss/Java.gmk ! make/modules/java.security.jgss/Launcher.gmk ! make/modules/java.security.jgss/Lib.gmk ! make/modules/java.security.sasl/Java.gmk ! make/modules/java.smartcardio/Java.gmk ! make/modules/java.smartcardio/Lib.gmk ! make/modules/java.sql.rowset/Java.gmk ! make/modules/java.sql/Java.gmk ! make/modules/java.transaction.xa/Java.gmk ! make/modules/java.xml.crypto/Java.gmk ! make/modules/java.xml/Copy.gmk ! make/modules/java.xml/Java.gmk ! make/modules/jdk.accessibility/Copy.gmk ! make/modules/jdk.accessibility/Java.gmk ! make/modules/jdk.accessibility/Launcher.gmk ! make/modules/jdk.accessibility/Lib.gmk ! make/modules/jdk.attach/Lib.gmk ! make/modules/jdk.charsets/Gensrc.gmk ! make/modules/jdk.charsets/Java.gmk ! make/modules/jdk.compiler/Gendata.gmk ! make/modules/jdk.compiler/Gensrc.gmk ! make/modules/jdk.compiler/Java.gmk ! make/modules/jdk.compiler/Launcher.gmk ! make/modules/jdk.crypto.cryptoki/Java.gmk ! make/modules/jdk.crypto.cryptoki/Lib.gmk ! make/modules/jdk.crypto.mscapi/Java.gmk ! make/modules/jdk.crypto.mscapi/Lib.gmk ! make/modules/jdk.dev/Java.gmk ! make/modules/jdk.dynalink/Java.gmk ! make/modules/jdk.editpad/Java.gmk ! make/modules/jdk.hotspot.agent/Gensrc.gmk ! make/modules/jdk.hotspot.agent/Java.gmk ! make/modules/jdk.hotspot.agent/Launcher.gmk ! make/modules/jdk.hotspot.agent/Lib.gmk ! make/modules/jdk.httpserver/Gensrc.gmk ! make/modules/jdk.httpserver/Java.gmk ! make/modules/jdk.httpserver/Jmod.gmk ! make/modules/jdk.httpserver/Launcher.gmk ! make/modules/jdk.incubator.vector/Java.gmk ! make/modules/jdk.incubator.vector/Lib.gmk ! make/modules/jdk.internal.jvmstat/Java.gmk ! make/modules/jdk.internal.le/Java.gmk ! make/modules/jdk.internal.md/Java.gmk ! make/modules/jdk.internal.opt/Java.gmk ! make/modules/jdk.internal.vm.ci/Java.gmk ! make/modules/jdk.jartool/Gensrc.gmk ! make/modules/jdk.jartool/Java.gmk ! make/modules/jdk.jartool/Jmod.gmk ! make/modules/jdk.jartool/Launcher.gmk ! make/modules/jdk.javadoc/Copy.gmk ! make/modules/jdk.javadoc/Gendata.gmk ! make/modules/jdk.javadoc/Gensrc.gmk ! make/modules/jdk.javadoc/Java.gmk ! make/modules/jdk.javadoc/Launcher.gmk ! make/modules/jdk.jcmd/Java.gmk ! make/modules/jdk.jcmd/Launcher.gmk ! make/modules/jdk.jconsole/Java.gmk ! make/modules/jdk.jconsole/Launcher.gmk ! make/modules/jdk.jdeps/Gensrc.gmk ! make/modules/jdk.jdeps/Java.gmk ! make/modules/jdk.jdeps/Launcher.gmk ! make/modules/jdk.jdi/Gensrc.gmk ! make/modules/jdk.jdi/Java.gmk ! make/modules/jdk.jdi/Launcher.gmk ! make/modules/jdk.jdi/Lib.gmk ! make/modules/jdk.jdwp.agent/Copy.gmk ! make/modules/jdk.jdwp.agent/Lib.gmk ! make/modules/jdk.jfr/Copy.gmk ! make/modules/jdk.jfr/Gendata.gmk ! make/modules/jdk.jfr/Java.gmk ! make/modules/jdk.jfr/Jmod.gmk ! make/modules/jdk.jfr/Launcher.gmk ! make/modules/jdk.jlink/Gensrc.gmk ! make/modules/jdk.jlink/Launcher.gmk ! make/modules/jdk.jpackage/Gensrc.gmk ! make/modules/jdk.jpackage/Java.gmk ! make/modules/jdk.jpackage/Jmod.gmk ! make/modules/jdk.jpackage/Launcher.gmk ! make/modules/jdk.jpackage/Lib.gmk ! make/modules/jdk.jshell/Gensrc.gmk ! make/modules/jdk.jshell/Java.gmk ! make/modules/jdk.jshell/Jmod.gmk ! make/modules/jdk.jshell/Launcher.gmk ! make/modules/jdk.jstatd/Jmod.gmk ! make/modules/jdk.jstatd/Launcher.gmk ! make/modules/jdk.localedata/Gensrc.gmk ! make/modules/jdk.localedata/Java.gmk ! make/modules/jdk.management.agent/Copy.gmk ! make/modules/jdk.management.agent/Gensrc.gmk ! make/modules/jdk.management.agent/Lib.gmk ! make/modules/jdk.management/Java.gmk ! make/modules/jdk.management/Lib.gmk ! make/modules/jdk.net/Lib.gmk ! make/modules/jdk.sctp/Java.gmk ! make/modules/jdk.sctp/Lib.gmk ! make/modules/jdk.security.auth/Java.gmk ! make/modules/jdk.security.auth/Lib.gmk ! make/modules/sun.charsets/Java.gmk ! make/test/BuildFailureHandler.gmk ! make/test/BuildJtregTestThreadFactory.gmk ! make/test/BuildMicrobenchmark.gmk ! make/test/BuildTestLib.gmk ! make/test/BuildTestLibNative.gmk ! make/test/JtregNativeHotspot.gmk ! make/test/JtregNativeJdk.gmk ! make/test/JtregNativeLibTest.gmk ! test/make/TestCompileCommands.gmk ! test/make/TestCopyFiles.gmk ! test/make/TestFixDepsFile.gmk ! test/make/TestIdea.gmk ! test/make/TestJavaCompilation.gmk ! test/make/TestMake.gmk ! test/make/TestMakeBase.gmk ! test/make/UtilsForTests.gmk Changeset: 30f71622 Branch: hermetic-java-runtime Author: David Holmes Date: 2025-02-06 07:32:22 +0000 URL: https://git.openjdk.org/leyden/commit/30f71622a1c86e297bf6d4b24d90e7531a0f19c2 8349417: Fix NULL usage from JDK-8346433 Reviewed-by: chagedorn ! src/hotspot/os/windows/os_windows.cpp Changeset: 3cf04dec Branch: hermetic-java-runtime Author: Jan Lahoda Date: 2025-02-06 07:34:28 +0000 URL: https://git.openjdk.org/leyden/commit/3cf04dec493d28730d4462257f64ea636f58d7e5 8349132: javac Analyzers should handle non-deferrable errors Reviewed-by: abimpoudis ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Analyzer.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/Log.java + test/langtools/tools/javac/analyzer/Diamond.java Changeset: 3eb57f6d Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-06 08:08:59 +0000 URL: https://git.openjdk.org/leyden/commit/3eb57f6d46b4375cb02b575739a1c12f71e088cf 8349140: Size optimization (opt-size) build fails after recent PCH changes Reviewed-by: jwaters, erikj, ihse ! make/hotspot/lib/JvmOverrideFiles.gmk Changeset: 7e307916 Branch: hermetic-java-runtime Author: Andrew Dinn Date: 2025-02-06 09:14:50 +0000 URL: https://git.openjdk.org/leyden/commit/7e307916ecbf1ae9795e42e5b5a8347daad4af8c 8349102: Test compiler/arguments/TestCodeEntryAlignment.java failed: assert(allocates2(pc)) failed: not in CodeBuffer memory Reviewed-by: dlong ! src/hotspot/cpu/x86/stubDeclarations_x86.hpp ! test/hotspot/jtreg/ProblemList.txt Changeset: d85f6514 Branch: hermetic-java-runtime Author: Gui Cao Committer: Hamlin Li Date: 2025-02-06 09:31:54 +0000 URL: https://git.openjdk.org/leyden/commit/d85f65147aeb4009742bfe401c6070d920b71b3e 8349428: RISC-V: "bad alignment" with -XX:-AvoidUnalignedAccesses after JDK-8347489 Reviewed-by: fyang, mli ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/stubGenerator_riscv.cpp Changeset: acb46ddb Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-06 09:33:02 +0000 URL: https://git.openjdk.org/leyden/commit/acb46ddb8901a4e96238de217d3e7931f381b699 8345155: Add /native to native test in FFM Reviewed-by: mcimadamore, pminborg ! test/jdk/java/foreign/LibraryLookupTest.java ! test/jdk/java/foreign/SafeFunctionAccessTest.java ! test/jdk/java/foreign/Test4BAlignedDouble.java ! test/jdk/java/foreign/TestAddressDereference.java ! test/jdk/java/foreign/TestClassLoaderFindNative.java ! test/jdk/java/foreign/TestDowncallScope.java ! test/jdk/java/foreign/TestDowncallStack.java ! test/jdk/java/foreign/TestHFA.java ! test/jdk/java/foreign/TestIntrinsics.java ! test/jdk/java/foreign/TestNULLAddress.java ! test/jdk/java/foreign/TestNative.java ! test/jdk/java/foreign/TestScope.java ! test/jdk/java/foreign/TestUpcallAsync.java ! test/jdk/java/foreign/TestUpcallScope.java ! test/jdk/java/foreign/TestUpcallStack.java ! test/jdk/java/foreign/TestVarArgs.java ! test/jdk/java/foreign/arraystructs/TestArrayStructs.java ! test/jdk/java/foreign/capturecallstate/TestCaptureCallState.java ! test/jdk/java/foreign/critical/TestCritical.java ! test/jdk/java/foreign/critical/TestCriticalUpcall.java ! test/jdk/java/foreign/dontrelease/TestDontRelease.java ! test/jdk/java/foreign/enablenativeaccess/TestEnableNativeAccess.java ! test/jdk/java/foreign/enablenativeaccess/TestEnableNativeAccessJarManifest.java ! test/jdk/java/foreign/loaderLookup/TestLoaderLookup.java ! test/jdk/java/foreign/loaderLookup/TestLoaderLookupJNI.java ! test/jdk/java/foreign/loaderLookup/TestSymbolLookupFindOrThrow.java ! test/jdk/java/foreign/nested/TestNested.java ! test/jdk/java/foreign/normalize/TestNormalize.java ! test/jdk/java/foreign/passheapsegment/TestPassHeapSegment.java ! test/jdk/java/foreign/stackwalk/TestAsyncStackWalk.java ! test/jdk/java/foreign/stackwalk/TestReentrantUpcalls.java ! test/jdk/java/foreign/stackwalk/TestStackWalk.java ! test/jdk/java/foreign/upcalldeopt/TestUpcallDeopt.java ! test/jdk/java/foreign/virtual/TestVirtualCalls.java Changeset: 4618993e Branch: hermetic-java-runtime Author: Tobias Hartmann Date: 2025-02-06 10:41:30 +0000 URL: https://git.openjdk.org/leyden/commit/4618993e27c806e5b349de98c020a91475727d65 8349537: Bad copyright in TestArrayStructs.java Reviewed-by: jpai ! test/jdk/java/foreign/arraystructs/TestArrayStructs.java ! test/jdk/java/foreign/loaderLookup/TestSymbolLookupFindOrThrow.java Changeset: dd8720e9 Branch: hermetic-java-runtime Author: Amit Kumar Date: 2025-02-06 13:15:18 +0000 URL: https://git.openjdk.org/leyden/commit/dd8720e90dc5475afd4ccc7321bb5cd97282e101 8348520: [s390x] Problemlist TestVectorReinterpret.java Reviewed-by: mdoerr ! test/hotspot/jtreg/ProblemList.txt Changeset: 2093bb74 Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-06 14:10:44 +0000 URL: https://git.openjdk.org/leyden/commit/2093bb74676620c416e42fb94b6f5a482700926b 8346434: Add test for non-automatic service binding Reviewed-by: almatvee ! test/jdk/tools/jpackage/apps/PrintEnv.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Comm.java ! test/jdk/tools/jpackage/share/JLinkOptionsTest.java Changeset: 2b82e2d5 Branch: hermetic-java-runtime Author: Archie Cobbs Date: 2025-02-06 14:32:25 +0000 URL: https://git.openjdk.org/leyden/commit/2b82e2d57bdb8cb677764abc99d70f6d03295625 8347958: Minor compiler cleanups relating to MandatoryWarningHandler Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Preview.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/MandatoryWarningHandler.java Changeset: e0487c7c Branch: hermetic-java-runtime Author: Christian Hagedorn Date: 2025-02-06 14:49:28 +0000 URL: https://git.openjdk.org/leyden/commit/e0487c7cbc16fdfe26d22f2b6e65bca7d4398252 8346777: Add missing const declarations and rename variables Reviewed-by: epeter, thartmann ! src/hotspot/share/opto/predicates.cpp ! src/hotspot/share/opto/predicates.hpp Changeset: 3fbae32d Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-06 15:01:05 +0000 URL: https://git.openjdk.org/leyden/commit/3fbae32d0a9dbe612d4170e135a813c114fdcec2 8349465: [UBSAN] test_os_reserve_between.cpp reported applying non-zero offset to null pointer Reviewed-by: mdoerr, amitkumar ! test/hotspot/gtest/runtime/test_os_reserve_between.cpp Changeset: 5ec1aae2 Branch: hermetic-java-runtime Author: Viktor Klang Date: 2025-02-06 15:02:21 +0000 URL: https://git.openjdk.org/leyden/commit/5ec1aae21e80d86c55df28a86935f50ae77f7b41 8347842: ThreadPoolExecutor specification discusses RuntimePermission Reviewed-by: alanb, jpai ! src/java.base/share/classes/java/util/concurrent/ThreadPoolExecutor.java Changeset: f12d2de5 Branch: hermetic-java-runtime Author: Nizar Benalla Date: 2025-02-06 16:14:30 +0000 URL: https://git.openjdk.org/leyden/commit/f12d2de53a62ec1c2c98e90409b27811de0560e1 8345212: Since checker should better handle non numeric values Reviewed-by: liach ! test/jdk/tools/sincechecker/SinceChecker.java Changeset: eb847026 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-06 16:15:35 +0000 URL: https://git.openjdk.org/leyden/commit/eb84702626ef1ededc55969923958e8c2835d821 8349513: Remove unused BUILD_JDK_JTREG_LIBRARIES_JDK_LIBS_libTracePinnedThreads Reviewed-by: dholmes, erikj ! make/test/JtregNativeJdk.gmk Changeset: 1ab1c1d5 Branch: hermetic-java-runtime Author: Liam Miller-Cushon Date: 2025-02-06 17:33:44 +0000 URL: https://git.openjdk.org/leyden/commit/1ab1c1d53b86228be85aac96fa5d69db39ac6317 8349058: 'internal proprietary API' warnings make javac warnings unusable Reviewed-by: vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/ClassFinder.java ! test/langtools/tools/javac/options/system/SystemSunProprietary.java Changeset: ed8945a6 Branch: hermetic-java-runtime Author: Harshitha Onkar Date: 2025-02-06 18:30:39 +0000 URL: https://git.openjdk.org/leyden/commit/ed8945a68a67dd51a7cfa332905941afccc12b36 8347377: Add validation checks for ICC_Profile header fields Reviewed-by: prr, jdv ! src/java.desktop/share/classes/java/awt/color/ICC_ColorSpace.java ! src/java.desktop/share/classes/java/awt/color/ICC_Profile.java + test/jdk/java/awt/color/ICC_Profile/ValidateICCHeaderData/ValidateICCHeaderData.java = test/jdk/java/awt/color/ICC_Profile/ValidateICCHeaderData/invalidSRGB.icc Changeset: 0181030b Branch: hermetic-java-runtime Author: Brian Burkhalter Date: 2025-02-06 19:10:26 +0000 URL: https://git.openjdk.org/leyden/commit/0181030bdc300f1d8fe02c3e2e599c997a4ab876 8349006: File.getCanonicalPath should remove "(on UNIX platforms)" from its specification Reviewed-by: jlu, naoto ! src/java.base/share/classes/java/io/File.java Changeset: 1a74ee64 Branch: hermetic-java-runtime Author: Brian Burkhalter Date: 2025-02-06 19:11:35 +0000 URL: https://git.openjdk.org/leyden/commit/1a74ee64eb835c3395fe763c42fd36e2a720f441 8349092: File.getFreeSpace violates specification if quotas are in effect (win) Reviewed-by: naoto ! src/java.base/windows/classes/java/io/WinNTFileSystem.java ! test/jdk/java/io/File/GetXSpace.java Changeset: 10791477 Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-06 20:20:43 +0000 URL: https://git.openjdk.org/leyden/commit/10791477cf0a0a31d2703fc718a7a649d494d534 8348570: CTW: Expose the code hidden by uncommon traps Reviewed-by: kvn, thartmann ! test/hotspot/jtreg/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java ! test/hotspot/jtreg/testlibrary/ctw/src/sun/hotspot/tools/ctw/CtwRunner.java Changeset: a0c7f661 Branch: hermetic-java-runtime Author: Calvin Cheung Date: 2025-02-06 22:31:19 +0000 URL: https://git.openjdk.org/leyden/commit/a0c7f661bedaf50b22cf83c798be46e8e5004b60 8349508: runtime/cds/appcds/TestParallelGCWithCDS.java should not check for specific output Reviewed-by: dholmes, iklam ! test/hotspot/jtreg/runtime/cds/appcds/TestParallelGCWithCDS.java ! test/hotspot/jtreg/runtime/cds/appcds/TestSerialGCWithCDS.java Changeset: 1eb54e42 Branch: hermetic-java-runtime Author: Fernando Guallini Committer: Rajan Halade Date: 2025-02-07 00:31:11 +0000 URL: https://git.openjdk.org/leyden/commit/1eb54e4228ba9319ac2f980055ed366dd861ec0b 8346049: jdk/test/lib/security/timestamp/TsaServer.java warnings Reviewed-by: weijun, rhalade, hchao, lmesnik ! test/lib/jdk/test/lib/security/timestamp/TsaServer.java Changeset: 3989a199 Branch: hermetic-java-runtime Author: Joe Wang Date: 2025-02-07 02:26:20 +0000 URL: https://git.openjdk.org/leyden/commit/3989a199578fc1d91988cfdbb95f11dd6d4c7b81 8344925: translet-name ignored when package-name is also set Reviewed-by: lancea, iris, naoto ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/XSLTC.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/TransformerFactoryImpl.java + test/jaxp/javax/xml/jaxp/libs/jaxp/library/JUnitTestUtil.java + test/jaxp/javax/xml/jaxp/unittest/transform/PropertiesTest.java Changeset: 006ed5c0 Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-07 07:43:43 +0000 URL: https://git.openjdk.org/leyden/commit/006ed5c02b47d12fdcc070f50cfeb77d5c158bca 8349375: Cleanup AIX special file build settings Reviewed-by: mdoerr, clanger, erikj, jwaters ! make/hotspot/lib/JvmOverrideFiles.gmk Changeset: 86cec4ea Branch: hermetic-java-runtime Author: Ivan Walulya Date: 2025-02-07 10:22:23 +0000 URL: https://git.openjdk.org/leyden/commit/86cec4ea2c2c56f03b23be44caade49b922cd3c6 8343782: G1: Use one G1CardSet instance for multiple old gen regions Reviewed-by: ayang, tschatzl ! src/hotspot/share/gc/g1/g1CardSet.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp ! src/hotspot/share/gc/g1/g1CollectedHeap.inline.hpp ! src/hotspot/share/gc/g1/g1CollectionSet.cpp ! src/hotspot/share/gc/g1/g1CollectionSet.hpp + src/hotspot/share/gc/g1/g1CollectionSet.inline.hpp ! src/hotspot/share/gc/g1/g1CollectionSetCandidates.cpp ! src/hotspot/share/gc/g1/g1CollectionSetCandidates.hpp ! src/hotspot/share/gc/g1/g1CollectionSetCandidates.inline.hpp ! src/hotspot/share/gc/g1/g1CollectionSetChooser.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.hpp ! src/hotspot/share/gc/g1/g1FullCollector.cpp ! src/hotspot/share/gc/g1/g1FullGCResetMetadataTask.cpp ! src/hotspot/share/gc/g1/g1HeapRegion.cpp ! src/hotspot/share/gc/g1/g1HeapRegion.hpp ! src/hotspot/share/gc/g1/g1HeapRegion.inline.hpp ! src/hotspot/share/gc/g1/g1HeapRegionRemSet.cpp ! src/hotspot/share/gc/g1/g1HeapRegionRemSet.hpp ! src/hotspot/share/gc/g1/g1HeapRegionRemSet.inline.hpp ! src/hotspot/share/gc/g1/g1OopClosures.inline.hpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.cpp ! src/hotspot/share/gc/g1/g1Policy.cpp ! src/hotspot/share/gc/g1/g1Policy.hpp ! src/hotspot/share/gc/g1/g1RemSet.cpp ! src/hotspot/share/gc/g1/g1RemSetSummary.cpp ! src/hotspot/share/gc/g1/g1RemSetTrackingPolicy.cpp ! src/hotspot/share/gc/g1/g1YoungCollector.cpp ! src/hotspot/share/gc/g1/g1YoungGCPostEvacuateTasks.cpp ! src/hotspot/share/gc/g1/g1_globals.hpp ! test/hotspot/jtreg/gc/g1/pinnedobjs/TestPinnedOldObjectsEvacuation.java Changeset: 7cd5cb29 Branch: hermetic-java-runtime Author: Mikhail Yankelevich Committer: Weijun Wang Date: 2025-02-07 15:40:17 +0000 URL: https://git.openjdk.org/leyden/commit/7cd5cb2916e8a62ec57c022a5fac19fb62b7c779 8349532: Refactor ./util/Pem/encoding.sh to run in java Reviewed-by: weijun ! test/jdk/sun/security/util/Pem/PemEncoding.java - test/jdk/sun/security/util/Pem/encoding.sh Changeset: fb847bb2 Branch: hermetic-java-runtime Author: Justin Lu Date: 2025-02-07 17:08:52 +0000 URL: https://git.openjdk.org/leyden/commit/fb847bb2afc9e9e164430078c5c403ec6583d50e 8349493: Replace sun.util.locale.ParseStatus usage with java.text.ParsePosition Reviewed-by: naoto ! src/java.base/share/classes/java/util/Locale.java ! src/java.base/share/classes/sun/util/locale/LanguageTag.java - src/java.base/share/classes/sun/util/locale/ParseStatus.java Changeset: 88a84835 Branch: hermetic-java-runtime Author: Bradford Wetmore Date: 2025-02-07 17:09:56 +0000 URL: https://git.openjdk.org/leyden/commit/88a84835a3a13f9adfcfa2ad034acff8fbc4fadc 8349121: SSLParameters.setApplicationProtocols() ALPN example could be clarified Reviewed-by: abarashev, jnimeh, dfuchs ! src/java.base/share/classes/javax/net/ssl/SSLParameters.java Changeset: b40f8eef Branch: hermetic-java-runtime Author: Andrew Haley Date: 2025-02-07 17:39:10 +0000 URL: https://git.openjdk.org/leyden/commit/b40f8eef98dac066816d4d548b2304276a76d5e0 8337251: C1: Improve Class.isInstance intrinsic Reviewed-by: vlivanov ! src/hotspot/cpu/aarch64/c1_LIRGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_Runtime1_aarch64.cpp ! src/hotspot/cpu/arm/c1_LIRGenerator_arm.cpp ! src/hotspot/cpu/ppc/c1_LIRGenerator_ppc.cpp ! src/hotspot/cpu/riscv/c1_LIRGenerator_riscv.cpp ! src/hotspot/cpu/s390/c1_LIRGenerator_s390.cpp ! src/hotspot/cpu/x86/c1_LIRGenerator_x86.cpp ! src/hotspot/cpu/x86/c1_Runtime1_x86.cpp ! src/hotspot/share/c1/c1_Canonicalizer.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp ! src/hotspot/share/c1/c1_Runtime1.cpp ! src/hotspot/share/runtime/stubDeclarations.hpp Changeset: bd9b24c0 Branch: hermetic-java-runtime Author: Liam Miller-Cushon Date: 2025-02-07 19:43:33 +0000 URL: https://git.openjdk.org/leyden/commit/bd9b24c0f8e0db88ae9714cdb355dcd56d802ab4 8349512: Duplicate PermittedSubclasses entries with doclint enabled Reviewed-by: vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Symbol.java ! test/langtools/tools/javac/sealed/SealedDiffConfigurationsTest.java Changeset: 7f6c6878 Branch: hermetic-java-runtime Author: Tom Rodriguez Date: 2025-02-07 19:58:37 +0000 URL: https://git.openjdk.org/leyden/commit/7f6c687815031d99931265007ff8867bf964cb25 8349374: [JVMCI] concurrent use of HotSpotSpeculationLog can crash Reviewed-by: kvn, dnsimon ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/HotSpotSpeculationLog.java Changeset: f0ea38b3 Branch: hermetic-java-runtime Author: Alexander Matveev Date: 2025-02-07 19:58:51 +0000 URL: https://git.openjdk.org/leyden/commit/f0ea38b3874ac627766768cbcd13f4be68c53797 8349509: [macos] Clean up macOS dead code in jpackage Reviewed-by: asemenyuk ! src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/MacAppImageBuilder.java ! src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/MacDmgBundler.java ! src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/MacPkgBundler.java Changeset: 1ed9ef1c Branch: hermetic-java-runtime Author: Coleen Phillimore Date: 2025-02-07 21:27:35 +0000 URL: https://git.openjdk.org/leyden/commit/1ed9ef1c3f787b4075974d5dcfde1606d6bfbe86 8349559: Compiler interface doesn't need to store protection domain Reviewed-by: vlivanov, iklam ! src/hotspot/share/ci/ciInstanceKlass.cpp ! src/hotspot/share/ci/ciInstanceKlass.hpp ! src/hotspot/share/ci/ciKlass.hpp ! src/hotspot/share/ci/ciObjArrayKlass.hpp ! src/hotspot/share/ci/ciObjectFactory.cpp Changeset: f8d8d0a9 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-07 16:16:56 +0000 URL: https://git.openjdk.org/leyden/commit/f8d8d0a9fe99681620228eee988d2d9bf80fdd0d Merge branch 'master' into hermetic-java-runtime ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/filemap.cpp From duke at openjdk.org Sat Feb 8 01:44:43 2025 From: duke at openjdk.org (duke) Date: Sat, 8 Feb 2025 01:44:43 GMT Subject: git: openjdk/leyden: hermetic-java-runtime: Clean up JLI_IsStaticJDK, JVM_IsStaticJDK, JLI_SetStaticJDK, etc. Message-ID: <47a13b95-1ed0-4e5c-a90b-b868c75e533e@openjdk.org> Changeset: fca48657 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-07 17:41:34 +0000 URL: https://git.openjdk.org/leyden/commit/fca48657c8bedfe329469f59b73c704a39261ba7 Clean up JLI_IsStaticJDK, JVM_IsStaticJDK, JLI_SetStaticJDK, etc. ! make/data/hotspot-symbols/symbols-unix ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/java.hpp ! src/java.base/share/native/libjli/java.c ! src/java.base/share/native/libjli/java.h ! src/java.base/unix/native/libjli/java_md.c ! src/jdk.jdwp.agent/share/native/libjdwp/export/sys.h ! src/jdk.jdwp.agent/unix/native/libjdwp/linker_md.c From duke at openjdk.org Sat Feb 8 03:30:49 2025 From: duke at openjdk.org (duke) Date: Sat, 8 Feb 2025 03:30:49 GMT Subject: git: openjdk/leyden: premain: 106 new changesets Message-ID: Changeset: a937f6db Branch: premain Author: Andrew Dinn Date: 2025-01-30 11:46:39 +0000 URL: https://git.openjdk.org/leyden/commit/a937f6db30ab55b98dae25d5b6d041cf4b7b7291 8343767: Enumerate StubGen blobs, stubs and entries and generate code from declarations Reviewed-by: vlivanov, mdoerr + src/hotspot/cpu/aarch64/stubDeclarations_aarch64.hpp ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/stubRoutines_aarch64.cpp ! src/hotspot/cpu/aarch64/stubRoutines_aarch64.hpp + src/hotspot/cpu/arm/stubDeclarations_arm.hpp ! src/hotspot/cpu/arm/stubGenerator_arm.cpp ! src/hotspot/cpu/arm/stubRoutinesCrypto_arm.cpp ! src/hotspot/cpu/arm/stubRoutines_arm.cpp ! src/hotspot/cpu/arm/stubRoutines_arm.hpp + src/hotspot/cpu/ppc/stubDeclarations_ppc.hpp ! src/hotspot/cpu/ppc/stubGenerator_ppc.cpp ! src/hotspot/cpu/ppc/stubRoutines_ppc.hpp + src/hotspot/cpu/riscv/stubDeclarations_riscv.hpp ! src/hotspot/cpu/riscv/stubGenerator_riscv.cpp ! src/hotspot/cpu/riscv/stubRoutines_riscv.cpp ! src/hotspot/cpu/riscv/stubRoutines_riscv.hpp + src/hotspot/cpu/s390/stubDeclarations_s390.hpp ! src/hotspot/cpu/s390/stubGenerator_s390.cpp ! src/hotspot/cpu/s390/stubRoutines_s390.cpp ! src/hotspot/cpu/s390/stubRoutines_s390.hpp ! src/hotspot/cpu/x86/c2_stubGenerator_x86_64_string.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.cpp + src/hotspot/cpu/x86/stubDeclarations_x86.hpp ! src/hotspot/cpu/x86/stubGenerator_x86_32.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.hpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_adler.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_aes.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_arraycopy.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_chacha.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_cos.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_exp.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_fmod.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_ghash.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_log.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_poly1305.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_poly_mont.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_pow.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_sha3.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_sin.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_tan.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64_tanh.cpp ! src/hotspot/cpu/x86/stubRoutines_x86.cpp ! src/hotspot/cpu/x86/stubRoutines_x86.hpp ! src/hotspot/cpu/x86/stubRoutines_x86_32.cpp ! src/hotspot/cpu/x86/stubRoutines_x86_64.cpp + src/hotspot/cpu/zero/stubDeclarations_zero.hpp ! src/hotspot/cpu/zero/stubGenerator_zero.cpp ! src/hotspot/cpu/zero/stubRoutines_zero.cpp ! src/hotspot/cpu/zero/stubRoutines_zero.hpp ! src/hotspot/os_cpu/linux_arm/os_linux_arm.cpp ! src/hotspot/share/runtime/stubCodeGenerator.cpp ! src/hotspot/share/runtime/stubCodeGenerator.hpp ! src/hotspot/share/runtime/stubDeclarations.hpp ! src/hotspot/share/runtime/stubRoutines.cpp ! src/hotspot/share/runtime/stubRoutines.hpp ! test/hotspot/gtest/runtime/test_stubRoutines.cpp Changeset: e91211aa Branch: premain Author: iklam Date: 2025-02-07 13:19:08 +0000 URL: https://git.openjdk.org/leyden/commit/e91211aa9230f0950b6a1b0482304a8ce3b0b290 Merge branch 'master' into premain ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/s390/stubGenerator_s390.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/share/code/SCCache.cpp ! src/hotspot/share/runtime/stubDeclarations.hpp ! src/hotspot/share/runtime/stubRoutines.hpp ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/s390/stubGenerator_s390.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp + src/hotspot/share/code/SCCache.cpp ! src/hotspot/share/runtime/stubDeclarations.hpp ! src/hotspot/share/runtime/stubRoutines.hpp Changeset: 2efb6aaa Branch: premain Author: Casper Norrbin Date: 2025-01-30 12:34:29 +0000 URL: https://git.openjdk.org/leyden/commit/2efb6aaadb0df50b5cc4b2495d988802f9dbff50 8345314: Add a red?black tree as a utility data structure Reviewed-by: aboldtch, jsjolen, stuefe + src/hotspot/share/utilities/rbTree.hpp + src/hotspot/share/utilities/rbTree.inline.hpp + test/hotspot/gtest/utilities/test_rbtree.cpp Changeset: fac63d43 Branch: premain Author: Jorn Vernee Date: 2025-01-30 14:55:37 +0000 URL: https://git.openjdk.org/leyden/commit/fac63d4383c931ea515dcdf7a89e4285f753f41b 8348668: Prevent first resource cleanup in confined arena from escaping Reviewed-by: liach ! src/java.base/share/classes/jdk/internal/foreign/ConfinedSession.java ! src/java.base/share/classes/jdk/internal/foreign/MemorySessionImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/AllocTest.java Changeset: 3f8a8754 Branch: premain Author: Shaojin Wen Date: 2025-01-30 15:13:13 +0000 URL: https://git.openjdk.org/leyden/commit/3f8a875497c0e8356f9104e32aa801b879c7b941 8348880: Replace ConcurrentMap with AtomicReferenceArray for ZoneOffset.QUARTER_CACHE Reviewed-by: naoto, liach ! src/java.base/share/classes/java/time/ZoneOffset.java ! test/jdk/java/time/test/java/time/TestZoneOffset.java Changeset: 5d5b294b Branch: premain Author: Andrew Dinn Date: 2025-01-30 15:29:13 +0000 URL: https://git.openjdk.org/leyden/commit/5d5b294b0aaf619a4ed57296f389205e04556870 8349070: Fix riscv and ppc build errors caused by JDK-8343767 Reviewed-by: mdoerr, fyang, jwaters ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/arm/stubRoutines_arm.cpp ! src/hotspot/cpu/ppc/stubGenerator_ppc.cpp ! src/hotspot/cpu/riscv/stubGenerator_riscv.cpp ! src/hotspot/cpu/riscv/stubRoutines_riscv.cpp ! src/hotspot/cpu/s390/stubRoutines_s390.cpp ! src/hotspot/cpu/zero/stubRoutines_zero.cpp Changeset: fdfb68c8 Branch: premain Author: Shaojin Wen Date: 2025-01-30 15:57:13 +0000 URL: https://git.openjdk.org/leyden/commit/fdfb68c8d0fddfe527291a7f4b75176c830dbb49 8344168: Change Unsafe base offset from int to long Reviewed-by: liach ! src/java.base/share/classes/java/lang/StringLatin1.java ! src/java.base/share/classes/java/lang/invoke/VarHandles.java ! src/java.base/share/classes/java/util/concurrent/ConcurrentHashMap.java ! src/java.base/share/classes/java/util/zip/CRC32C.java ! src/java.base/share/classes/java/util/zip/ZipUtils.java ! src/java.base/share/classes/jdk/internal/classfile/impl/RawBytecodeHelper.java ! src/java.base/share/classes/jdk/internal/foreign/HeapMemorySegmentImpl.java ! src/java.base/share/classes/jdk/internal/foreign/Utils.java ! src/java.base/share/classes/jdk/internal/misc/Unsafe.java ! src/java.base/share/classes/jdk/internal/util/ArraysSupport.java ! src/java.base/share/classes/jdk/internal/util/DecimalDigits.java ! src/java.base/unix/classes/sun/nio/fs/UnixUserDefinedFileAttributeView.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/ByteVector.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/DoubleVector.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/FloatVector.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/IntVector.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/LongVector.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/ShortVector.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/X-Vector.java.template ! src/jdk.unsupported/share/classes/sun/misc/Unsafe.java ! test/hotspot/jtreg/compiler/c2/Test6968348.java ! test/hotspot/jtreg/compiler/c2/cr8004867/TestIntUnsafeCAS.java ! test/hotspot/jtreg/compiler/c2/cr8004867/TestIntUnsafeOrdered.java ! test/hotspot/jtreg/compiler/c2/cr8004867/TestIntUnsafeVolatile.java ! test/hotspot/jtreg/compiler/loopopts/superword/TestMovingLoadBeforeStore.java ! test/hotspot/jtreg/compiler/runtime/Test8010927.java ! test/hotspot/jtreg/compiler/unsafe/JdkInternalMiscUnsafeAccessTestBoolean.java ! test/hotspot/jtreg/compiler/unsafe/JdkInternalMiscUnsafeAccessTestByte.java ! test/hotspot/jtreg/compiler/unsafe/JdkInternalMiscUnsafeAccessTestChar.java ! test/hotspot/jtreg/compiler/unsafe/JdkInternalMiscUnsafeAccessTestDouble.java ! test/hotspot/jtreg/compiler/unsafe/JdkInternalMiscUnsafeAccessTestFloat.java ! test/hotspot/jtreg/compiler/unsafe/JdkInternalMiscUnsafeAccessTestInt.java ! test/hotspot/jtreg/compiler/unsafe/JdkInternalMiscUnsafeAccessTestLong.java ! test/hotspot/jtreg/compiler/unsafe/JdkInternalMiscUnsafeAccessTestObject.java ! test/hotspot/jtreg/compiler/unsafe/JdkInternalMiscUnsafeAccessTestShort.java ! test/hotspot/jtreg/compiler/unsafe/SunMiscUnsafeAccessTestBoolean.java ! test/hotspot/jtreg/compiler/unsafe/SunMiscUnsafeAccessTestByte.java ! test/hotspot/jtreg/compiler/unsafe/SunMiscUnsafeAccessTestChar.java ! test/hotspot/jtreg/compiler/unsafe/SunMiscUnsafeAccessTestDouble.java ! test/hotspot/jtreg/compiler/unsafe/SunMiscUnsafeAccessTestFloat.java ! test/hotspot/jtreg/compiler/unsafe/SunMiscUnsafeAccessTestInt.java ! test/hotspot/jtreg/compiler/unsafe/SunMiscUnsafeAccessTestLong.java ! test/hotspot/jtreg/compiler/unsafe/SunMiscUnsafeAccessTestObject.java ! test/hotspot/jtreg/compiler/unsafe/SunMiscUnsafeAccessTestShort.java ! test/hotspot/jtreg/compiler/unsafe/X-UnsafeAccessTest.java.template ! test/hotspot/jtreg/gc/arguments/TestMaxMinHeapFreeRatioFlags.java ! test/hotspot/jtreg/gc/arguments/TestTargetSurvivorRatioFlag.java ! test/hotspot/jtreg/runtime/FieldLayout/BaseOffsets.java ! test/hotspot/jtreg/runtime/Unsafe/GetField.java ! test/hotspot/jtreg/runtime/Unsafe/InternalErrorTest.java ! test/micro/org/openjdk/bench/java/lang/foreign/BulkOps.java ! test/micro/org/openjdk/bench/java/lang/foreign/LoopOverNonConstantHeap.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayUnsafeXorOpImpl.java Changeset: 0cae8880 Branch: premain Author: Zhengyu Gu Date: 2025-01-30 16:14:43 +0000 URL: https://git.openjdk.org/leyden/commit/0cae888046e0b014e2222d16ef9f830cecf8f8dd 8349003: NativeCallStack::print_on() output is unreadable Reviewed-by: stuefe, dholmes ! src/hotspot/share/utilities/nativeCallStack.cpp Changeset: 1ac2d6e0 Branch: premain Author: Ioi Lam Date: 2025-01-30 16:21:57 +0000 URL: https://git.openjdk.org/leyden/commit/1ac2d6e0fb3d503241af1a44c9ed65837c63b646 8349009: JVM fails to start when AOTClassLinking is used with unverifiable old classes Reviewed-by: jrose, kvn ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/BadOldClassA.jasm + test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/BadOldClassB.jasm ! test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/BulkLoaderTest.java Changeset: 06ebb170 Branch: premain Author: William Kemper Date: 2025-01-30 17:01:41 +0000 URL: https://git.openjdk.org/leyden/commit/06ebb170bac3879dc1e378b48b1c7ef006070c86 8349002: GenShen: Deadlock during shutdown Reviewed-by: shade ! src/hotspot/share/gc/shenandoah/shenandoahGenerationalControlThread.cpp ! src/hotspot/share/gc/shenandoah/shenandoahGenerationalControlThread.hpp Changeset: cc775b16 Branch: premain Author: Andrey Turbanov Date: 2025-01-30 17:48:11 +0000 URL: https://git.openjdk.org/leyden/commit/cc775b16208bba4df98485de0970513baa0495a7 8348648: Unnecessary Hashtable usage in javax.swing.text.html.CSS.LengthUnit Reviewed-by: aivanov, azvegint, serb ! src/java.desktop/share/classes/javax/swing/text/html/CSS.java Changeset: f05c53c2 Branch: premain Author: Justin Lu Date: 2025-01-30 17:55:47 +0000 URL: https://git.openjdk.org/leyden/commit/f05c53c2c4adec4c4e875d8b84ec7682bbe356f8 8347949: Currency method to stream available Currencies Reviewed-by: naoto, liach, rriggs ! src/java.base/share/classes/java/util/Currency.java + test/jdk/java/util/Currency/AvailableCurrenciesTest.java Changeset: d589a82d Branch: premain Author: Harshitha Onkar Date: 2025-01-30 21:11:34 +0000 URL: https://git.openjdk.org/leyden/commit/d589a82d08a01ae6ff87103b58d286f3c14367e5 8349101: Problemlist HeadlessMalfunctionTest.java Reviewed-by: dholmes ! test/jdk/ProblemList.txt Changeset: 8986cb27 Branch: premain Author: Nizar Benalla Date: 2025-01-31 01:16:54 +0000 URL: https://git.openjdk.org/leyden/commit/8986cb2772469fa8fe30bbe7407eeb35545af1a3 8331873: Improve/expand info in `New API In` on Help page Co-authored-by: Jonathan Gibbons Reviewed-by: liach, hannesw ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HelpWriter.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlIds.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/standard.properties ! test/langtools/jdk/javadoc/doclet/testNewApiList/TestNewApiList.java Changeset: cdc84acd Branch: premain Author: Ioi Lam Date: 2025-01-31 01:56:05 +0000 URL: https://git.openjdk.org/leyden/commit/cdc84acdcc7689c2b2e42075a26939da14a1ba34 8348890: Fix docs for -XX:AOT* options in java man page Reviewed-by: jrose ! src/java.base/share/man/java.md Changeset: 0d30b869 Branch: premain Author: naveen.n.narayanan Date: 2025-01-31 05:14:57 +0000 URL: https://git.openjdk.org/leyden/commit/0d30b869d8be831bfc5ff5511b3a42900e4c22a4 8344581: [TESTBUG] java/awt/Robot/ScreenCaptureRobotTest.java failing on macOS Reviewed-by: aivanov, azvegint, abhiscxk ! test/jdk/ProblemList.txt ! test/jdk/java/awt/Robot/ScreenCaptureRobotTest.java Changeset: 03f5c33b Branch: premain Author: Ioi Lam Date: 2025-01-31 05:37:38 +0000 URL: https://git.openjdk.org/leyden/commit/03f5c33b53749ed7a1ee04d908909ce1e761477f 8349122: -XX:+AOTClassLinking is not compatible with jdwp Reviewed-by: jrose, kvn ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/arguments.hpp Changeset: 2df9d5bc Branch: premain Author: SendaoYan Date: 2025-01-31 06:40:26 +0000 URL: https://git.openjdk.org/leyden/commit/2df9d5bc2f4d0cbfe62138adc8a3771abb89418b 8349040: Test compiler/inlining/LateInlinePrinting.java fails after JDK-8319850 Reviewed-by: mbaesken, thartmann ! test/hotspot/jtreg/compiler/inlining/LateInlinePrinting.java Changeset: 5a45de5e Branch: premain Author: Jan Lahoda Date: 2025-01-31 07:56:13 +0000 URL: https://git.openjdk.org/leyden/commit/5a45de5e1ec5ab3e6ed1f5cefa7b320353bb523f 8347989: Trees.getScope may crash for not-yet attributed source Reviewed-by: asotona ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Enter.java ! test/langtools/tools/javac/api/TestGetScopeResult.java Changeset: 669f8c0c Branch: premain Author: Matthias Baesken Date: 2025-01-31 08:11:30 +0000 URL: https://git.openjdk.org/leyden/commit/669f8c0c07b57fa00ac84b8a90c4a1a1459443e3 8349039: Adjust exception No type named in database Reviewed-by: kevinw, cjplummer ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/basic/BasicTypeDataBase.java Changeset: c3923fbb Branch: premain Author: Tobias Hartmann Date: 2025-01-31 08:22:11 +0000 URL: https://git.openjdk.org/leyden/commit/c3923fbb9a859c57f4f5d441e332623627b7c177 8349130: Problem list TestCodeEntryAlignment.java Reviewed-by: chagedorn ! test/hotspot/jtreg/ProblemList.txt Changeset: 8f7e6e2d Branch: premain Author: Erik Gahlin Date: 2025-01-31 08:55:52 +0000 URL: https://git.openjdk.org/leyden/commit/8f7e6e2dbc0a3ccf56242bf071e57bfd671de951 8348430: Update jfr tests to allow execution with different vm flags Reviewed-by: mgronlun ! test/jdk/jdk/jfr/api/event/dynamic/TestEventFactory.java ! test/jdk/jdk/jfr/api/recorder/TestStartStopRecording.java ! test/jdk/jdk/jfr/api/recording/dump/TestDump.java ! test/jdk/jdk/jfr/event/allocation/TestObjectAllocationSampleEvent.java ! test/jdk/jdk/jfr/event/oldobject/TestSanityDefault.java ! test/jdk/jdk/jfr/event/profiling/TestFullStackTrace.java ! test/jdk/jdk/jfr/jvm/TestChunkIntegrity.java ! test/jdk/jdk/jfr/jvm/TestGetAllEventClasses.java ! test/jdk/jdk/jfr/jvm/TestJFRIntrinsic.java ! test/jdk/jdk/jfr/threading/TestManyVirtualThreads.java Changeset: 5878e45a Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-31 13:48:09 +0000 URL: https://git.openjdk.org/leyden/commit/5878e45ae07404bc18518e6a2cb551a7969fddd6 8348998: Split out PreInit.gmk from Init.gmk Reviewed-by: erikj ! Makefile ! make/Init.gmk ! make/InitSupport.gmk + make/PreInit.gmk + make/PreInitSupport.gmk ! make/RunTestsPrebuilt.gmk + make/common/LogUtils.gmk Changeset: a414a591 Branch: premain Author: Sorna Sarathi N Date: 2025-01-31 14:06:22 +0000 URL: https://git.openjdk.org/leyden/commit/a414a591dd8d66f1500cd69dd65baa6ba4224c2a 8344983: [PPC64] Rename ConditionRegisters Reviewed-by: rrich, mdoerr ! src/hotspot/cpu/ppc/assembler_ppc.cpp ! src/hotspot/cpu/ppc/assembler_ppc.inline.hpp ! src/hotspot/cpu/ppc/c1_CodeStubs_ppc.cpp ! src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.cpp ! src/hotspot/cpu/ppc/c1_MacroAssembler_ppc.cpp ! src/hotspot/cpu/ppc/c1_Runtime1_ppc.cpp ! src/hotspot/cpu/ppc/c2_MacroAssembler_ppc.cpp ! src/hotspot/cpu/ppc/downcallLinker_ppc.cpp ! src/hotspot/cpu/ppc/gc/g1/g1BarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/g1/g1_ppc.ad ! src/hotspot/cpu/ppc/gc/shared/barrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/shared/cardTableBarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/shared/modRefBarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/shenandoah/shenandoahBarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/z/zBarrierSetAssembler_ppc.cpp ! src/hotspot/cpu/ppc/gc/z/z_ppc.ad ! src/hotspot/cpu/ppc/interp_masm_ppc_64.cpp ! src/hotspot/cpu/ppc/interpreterRT_ppc.cpp ! src/hotspot/cpu/ppc/jniFastGetField_ppc.cpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.cpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.hpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.inline.hpp ! src/hotspot/cpu/ppc/macroAssembler_ppc_sha.cpp ! src/hotspot/cpu/ppc/methodHandles_ppc.cpp ! src/hotspot/cpu/ppc/ppc.ad ! src/hotspot/cpu/ppc/register_ppc.hpp ! src/hotspot/cpu/ppc/runtime_ppc.cpp ! src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp ! src/hotspot/cpu/ppc/stubGenerator_ppc.cpp ! src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp ! src/hotspot/cpu/ppc/templateTable_ppc_64.cpp ! src/hotspot/cpu/ppc/vtableStubs_ppc_64.cpp Changeset: ee87d187 Branch: premain Author: Daniel Lund?n Date: 2025-01-31 14:09:15 +0000 URL: https://git.openjdk.org/leyden/commit/ee87d187d1cab09317b4f0068bfafc68efbbfe56 8348658: [AArch64] The node limit in compiler/codegen/TestMatcherClone.java is too strict Co-authored-by: Aleksey Shipilev Reviewed-by: shade, kvn ! test/hotspot/jtreg/compiler/codegen/TestMatcherClone.java Changeset: bba6a8f0 Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-31 14:29:35 +0000 URL: https://git.openjdk.org/leyden/commit/bba6a8f0c19e40e65b9f63d5bc69c6a3bfa7442b 8349143: All make control variables need special propagation Reviewed-by: erikj ! make/PreInitSupport.gmk Changeset: fcd5ebc7 Branch: premain Author: Magnus Ihse Bursie Date: 2025-01-31 14:35:42 +0000 URL: https://git.openjdk.org/leyden/commit/fcd5ebc7e8964c7936c0eede031cb6193621f5fb 8292944: Noisy output when running make help the first time Reviewed-by: erikj ! make/Init.gmk ! make/Main.gmk ! make/RunTestsPrebuilt.gmk ! make/common/FindTests.gmk ! make/common/Modules.gmk Changeset: 77647421 Branch: premain Author: Jorn Vernee Date: 2025-01-31 16:49:03 +0000 URL: https://git.openjdk.org/leyden/commit/77647421c5b13738f6fa145bf30cbb9dd741e164 8348909: [BACKOUT] Implement a better allocator for downcalls Reviewed-by: shade, liach ! src/java.base/share/classes/jdk/internal/foreign/SlicingAllocator.java - src/java.base/share/classes/jdk/internal/foreign/abi/BufferStack.java ! src/java.base/share/classes/jdk/internal/foreign/abi/SharedUtils.java - test/jdk/java/foreign/TestBufferStack.java - test/jdk/java/foreign/libTestBufferStack.c - test/micro/org/openjdk/bench/java/lang/foreign/CallOverheadByValue.java - test/micro/org/openjdk/bench/java/lang/foreign/libCallOverheadByValue.c Changeset: 137ad5d0 Branch: premain Author: Jorn Vernee Date: 2025-01-31 16:49:21 +0000 URL: https://git.openjdk.org/leyden/commit/137ad5d03c598d5e2888d08e6fbc638936650f30 8348976: MemorySegment::reinretpret should be force inlined Reviewed-by: liach ! src/java.base/share/classes/jdk/internal/foreign/AbstractMemorySegmentImpl.java Changeset: 13d852a0 Branch: premain Author: Rajan Halade Date: 2025-01-31 16:56:38 +0000 URL: https://git.openjdk.org/leyden/commit/13d852a0b81a1fbf49e8b32ec8dc06e044263809 8349017: Update ML tests to verify against ACVP 1.1.0.38 version Reviewed-by: weijun ! test/jdk/sun/security/provider/acvp/Launcher.java ! test/jdk/sun/security/provider/acvp/ML_DSA_Test.java - test/jdk/sun/security/provider/acvp/data/ML-DSA-keyGen-FIPS204/internalProjection.json - test/jdk/sun/security/provider/acvp/data/ML-DSA-sigGen-FIPS204/internalProjection.json - test/jdk/sun/security/provider/acvp/data/ML-DSA-sigVer-FIPS204/internalProjection.json - test/jdk/sun/security/provider/acvp/data/ML-KEM-encapDecap-FIPS203/internalProjection.json - test/jdk/sun/security/provider/acvp/data/ML-KEM-keyGen-FIPS203/internalProjection.json - test/jdk/sun/security/provider/acvp/data/acvp.md Changeset: 2d6045a2 Branch: premain Author: Naoto Sato Date: 2025-01-31 17:12:00 +0000 URL: https://git.openjdk.org/leyden/commit/2d6045a26f60fb36f69680e3a83b8303ab2c13e4 8301875: java.util.TimeZone.getSystemTimeZoneID uses C library default file mode Reviewed-by: jlu, joehw ! src/java.base/windows/native/libjava/TimeZone_md.c Changeset: 651ac3cc Branch: premain Author: anass baya Date: 2025-01-31 18:30:01 +0000 URL: https://git.openjdk.org/leyden/commit/651ac3cc0f2a8b3edf5cddb42df1d38d4aa0e1a6 6899304: java.awt.Toolkit.getScreenInsets(GraphicsConfiguration) returns incorrect values Reviewed-by: aivanov, honkar, prr, serb ! src/java.desktop/windows/native/libawt/windows/awt_Toolkit.cpp ! test/jdk/java/awt/Multiscreen/MultiScreenInsetsTest/MultiScreenInsetsTest.java Changeset: 305bbdae Branch: premain Author: Aleksey Shipilev Date: 2025-02-01 14:06:48 +0000 URL: https://git.openjdk.org/leyden/commit/305bbdae7fe40e33cf2baa100c134bd85ecaa553 8348402: PerfDataManager stalls shutdown for 1ms Reviewed-by: dholmes, pchilanomate, coleenp ! src/hotspot/share/runtime/objectMonitor.cpp ! src/hotspot/share/runtime/objectMonitor.hpp ! src/hotspot/share/runtime/perfData.cpp ! src/hotspot/share/runtime/perfData.hpp ! src/hotspot/share/runtime/synchronizer.cpp Changeset: 2cce5eeb Branch: premain Author: SendaoYan Date: 2025-02-02 02:46:16 +0000 URL: https://git.openjdk.org/leyden/commit/2cce5eeb092b68b4e4ce6a8289a8aa567f47c973 8349142: [JMH] compiler.MergeLoadBench.getCharBV fails Reviewed-by: liach ! test/micro/org/openjdk/bench/vm/compiler/MergeLoadBench.java Changeset: 9aa6d09b Branch: premain Author: Aggelos Biboudis Date: 2025-02-03 09:08:25 +0000 URL: https://git.openjdk.org/leyden/commit/9aa6d09bf74110bf4f5756d7c3b106558042102f 8326485: Assertion due to Type.addMetadata adding annotations to already-annotated type Reviewed-by: jlahoda ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/TypeAnnotations.java + test/langtools/tools/javac/T8326485.java + test/langtools/tools/javac/T8326485.out Changeset: 6f4fc821 Branch: premain Author: Alexander Zvegintsev Date: 2025-02-03 11:14:14 +0000 URL: https://git.openjdk.org/leyden/commit/6f4fc82149b52dd91289fe42def7d1cacad31212 8348675: TrayIcon tests fail in Ubuntu 24.10 Wayland Reviewed-by: aivanov, dnguyen ! test/jdk/java/awt/TrayIcon/ActionCommand/ActionCommand.java ! test/jdk/java/awt/TrayIcon/TrayIconMouseTest/TrayIconMouseTest.java ! test/jdk/java/awt/TrayIcon/TrayIconPopup/TrayIconPopupClickTest.java ! test/jdk/java/awt/TrayIcon/TrayIconPopup/TrayIconPopupTest.java Changeset: 3f1d9b57 Branch: premain Author: Hamlin Li Date: 2025-02-03 12:33:31 +0000 URL: https://git.openjdk.org/leyden/commit/3f1d9b573546685215af06031656efe6f1429caf 8348575: SpinLockT is typedef'ed but unused Reviewed-by: dholmes ! src/hotspot/share/runtime/thread.cpp Changeset: d330421d Branch: premain Author: Coleen Phillimore Date: 2025-02-03 13:55:00 +0000 URL: https://git.openjdk.org/leyden/commit/d330421d28b62eae19114994d7266e9c0038dd94 8337548: Parallel class loading can pass is_superclass true for interfaces Reviewed-by: iklam ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionary.hpp Changeset: a57c9b10 Branch: premain Author: SendaoYan Date: 2025-02-03 14:25:47 +0000 URL: https://git.openjdk.org/leyden/commit/a57c9b101a7fdb08ed1c8ca31ab0d4cc0040f1ba 8349184: [JMH] jdk.incubator.vector.ColumnFilterBenchmark.filterDoubleColumn fails on linux-aarch64 Reviewed-by: haosun, aph ! test/micro/org/openjdk/bench/jdk/incubator/vector/ColumnFilterBenchmark.java Changeset: bb837d2f Branch: premain Author: Tom Rodriguez Date: 2025-02-03 17:04:55 +0000 URL: https://git.openjdk.org/leyden/commit/bb837d2f9b636c05ff0c7733bc3d06c002974c17 8342775: [Graal] java/util/concurrent/locks/Lock/OOMEInAQS.java fails OOME thrown from the UncaughtExceptionHandler Reviewed-by: jpai, dholmes ! test/jdk/java/util/concurrent/locks/Lock/OOMEInAQS.java ! test/jdk/java/util/concurrent/locks/StampedLock/OOMEInStampedLock.java Changeset: 618c5eb2 Branch: premain Author: Jaikiran Pai Date: 2025-02-03 18:21:33 +0000 URL: https://git.openjdk.org/leyden/commit/618c5eb27b4c719afd577b690e6bcb21a45fcb0d 8349183: [BACKOUT] Optimization for StringBuilder append boolean & null 8349239: [BACKOUT] Reuse StringLatin1::putCharsAt and StringUTF16::putCharsAt Reviewed-by: redestad, liach ! src/java.base/share/classes/java/lang/AbstractStringBuilder.java ! src/java.base/share/classes/java/lang/StringConcatHelper.java ! src/java.base/share/classes/java/lang/StringLatin1.java ! src/java.base/share/classes/java/lang/StringUTF16.java ! test/hotspot/jtreg/compiler/patches/java.base/java/lang/Helper.java ! test/micro/org/openjdk/bench/java/lang/StringBuilders.java Changeset: 43979fb1 Branch: premain Author: Ben Perez Date: 2025-02-03 22:14:38 +0000 URL: https://git.openjdk.org/leyden/commit/43979fb1be424157b33268db078d345b4da29119 8347428: Avoid using secret-key in specifications Reviewed-by: mullan ! src/java.base/share/classes/com/sun/crypto/provider/JceKeyStore.java ! src/java.base/share/classes/com/sun/crypto/provider/SunJCE.java ! src/java.base/share/classes/javax/crypto/SecretKeyFactory.java ! src/java.base/share/classes/javax/crypto/SecretKeyFactorySpi.java ! src/java.base/share/classes/javax/crypto/spec/PBEKeySpec.java ! src/java.base/share/classes/javax/crypto/spec/SecretKeySpec.java ! test/jdk/com/sun/crypto/provider/CICO/PBEFunc/AbstractPBEWrapper.java Changeset: 9b495972 Branch: premain Author: Coleen Phillimore Date: 2025-02-03 22:48:28 +0000 URL: https://git.openjdk.org/leyden/commit/9b49597244f898400222cfc252f50a2401ca3e2f 8334320: Replace vmTestbase/metaspace/share/TriggerUnloadingWithWhiteBox.java with ClassUnloadCommon from testlibrary Reviewed-by: dholmes, lmesnik + test/hotspot/jtreg/vmTestbase/metaspace/share/TriggerUnloadingWithFullGC.java - test/hotspot/jtreg/vmTestbase/metaspace/share/TriggerUnloadingWithWhiteBox.java ! test/hotspot/jtreg/vmTestbase/metaspace/staticReferences/StaticReferences.java ! test/hotspot/jtreg/vmTestbase/metaspace/stressHierarchy/common/StressHierarchyBaseClass.java Changeset: 7ea176d7 Branch: premain Author: Amit Kumar Date: 2025-02-04 03:05:00 +0000 URL: https://git.openjdk.org/leyden/commit/7ea176d79c126c69cea5631d6542cd42bd8b11d9 8349193: compiler/intrinsics/TestContinuationPinningAndEA.java missing @requires vm.continuations Reviewed-by: chagedorn ! test/hotspot/jtreg/compiler/intrinsics/TestContinuationPinningAndEA.java Changeset: c545a3e0 Branch: premain Author: Christian Hagedorn Date: 2025-02-04 07:33:34 +0000 URL: https://git.openjdk.org/leyden/commit/c545a3e028ad0760ed2f996e8bb7c56d28e4570a 8346774: Use Predicate classes instead of Node classes Reviewed-by: epeter, kvn ! src/hotspot/share/opto/predicates.cpp ! src/hotspot/share/opto/predicates.hpp Changeset: beae8843 Branch: premain Author: Matthias Baesken Date: 2025-02-04 08:10:49 +0000 URL: https://git.openjdk.org/leyden/commit/beae8843b9b2433af5e9fbe420b17e663cbdb960 8349150: Support precompiled headers on AIX Reviewed-by: jkern, erikj ! make/hotspot/lib/CompileJvm.gmk ! make/hotspot/lib/JvmOverrideFiles.gmk Changeset: 81126c20 Branch: premain Author: Per Minborg Date: 2025-02-04 11:00:54 +0000 URL: https://git.openjdk.org/leyden/commit/81126c20cbcab577d82e690d9cf1c1b738754a07 8349238: Some more FFM benchmarks are broken Reviewed-by: mcimadamore ! test/micro/org/openjdk/bench/java/lang/foreign/xor/XorTest.java Changeset: d699aba2 Branch: premain Author: Volkan Yazici Date: 2025-02-04 13:56:25 +0000 URL: https://git.openjdk.org/leyden/commit/d699aba26f65ce1941bfbaaf1918c987dd01727e 8349135: Add tests for HttpRequest.Builder.copy() Reviewed-by: jpai, dfuchs ! test/jdk/java/net/httpclient/HttpRequestBuilderTest.java Changeset: e91a6ec4 Branch: premain Author: Fei Yang Date: 2025-02-04 14:03:07 +0000 URL: https://git.openjdk.org/leyden/commit/e91a6ec49c80ea53bb6f1eb43c924f188803de7e 8347489: RISC-V: Misaligned memory access with COH Reviewed-by: mli, vkempik ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/stubGenerator_riscv.cpp Changeset: beb43e26 Branch: premain Author: Per Minborg Date: 2025-02-04 14:10:42 +0000 URL: https://git.openjdk.org/leyden/commit/beb43e2633900bb9ab3c975376fe5860b6d054e0 8349343: Add missing copyright messages in FFM benchmarks Reviewed-by: jvernee ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayCriticalXorOpImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayElementsXorOpImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayForeignXorOpCriticalImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayForeignXorOpImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayForeignXorOpInitImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/GetArrayRegionXorOpImpl.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/XorOp.java ! test/micro/org/openjdk/bench/java/lang/foreign/xor/libjnitest.c Changeset: b985347c Branch: premain Author: Ioi Lam Date: 2025-02-04 16:08:00 +0000 URL: https://git.openjdk.org/leyden/commit/b985347c2383a7a637ffa9a4a8687f7f7cde1369 8348349: Refactor CDSConfig::is_dumping_heap() Reviewed-by: ccheung, matsaave ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConfig.hpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/prims/whitebox.cpp ! test/hotspot/jtreg/runtime/cds/appcds/sharedStrings/IncompatibleOptions.java ! test/jtreg-ext/requires/VMProps.java Changeset: ee4caa41 Branch: premain Author: Jamil Nimeh Date: 2025-02-04 16:28:04 +0000 URL: https://git.openjdk.org/leyden/commit/ee4caa4180e76911ee75148583c2923f847f8605 8349106: Change ChaCha20 intrinsic to use quarter-round parallel implementation on aarch64 Reviewed-by: aph ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp Changeset: 250ff86d Branch: premain Author: Justin Lu Date: 2025-02-04 17:07:01 +0000 URL: https://git.openjdk.org/leyden/commit/250ff86dc86f73dbf7c944d9b5a792c4bdfeef0d 8349000: Performance improvement for Currency.isPastCutoverDate(String) Reviewed-by: naoto, aturbanov ! src/java.base/share/classes/java/util/Currency.java Changeset: bad39b6d Branch: premain Author: Satyen Subramaniam Committer: Paul Hohensee Date: 2025-02-04 17:19:19 +0000 URL: https://git.openjdk.org/leyden/commit/bad39b6d8892ba9b86bc81bf01108a1df617defb 8348610: GenShen: TestShenandoahEvacuationInformationEvent failed with setRegions >= regionsFreed: expected 1 >= 57 Reviewed-by: wkemper, phh ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahGenerationalHeuristics.cpp ! src/hotspot/share/gc/shenandoah/shenandoahEvacInfo.hpp ! src/hotspot/share/gc/shenandoah/shenandoahTrace.cpp ! src/hotspot/share/jfr/metadata/metadata.xml ! test/jdk/jdk/jfr/event/gc/detailed/TestShenandoahEvacuationInformationEvent.java Changeset: d222c186 Branch: premain Author: Brent Christian Date: 2025-02-04 22:37:31 +0000 URL: https://git.openjdk.org/leyden/commit/d222c186a6c5a282e9ef143fac3568351ad7b9d7 8349107: Remove RMI finalizers Reviewed-by: rriggs, vklang, djelinski, smarks ! src/java.rmi/share/classes/sun/rmi/log/LogInputStream.java ! src/jdk.naming.rmi/share/classes/com/sun/jndi/rmi/registry/RegistryContext.java Changeset: 9d23de58 Branch: premain Author: Ben Perez Date: 2025-02-04 23:13:16 +0000 URL: https://git.openjdk.org/leyden/commit/9d23de58d167ff7d23ee1b8da675ec1b26b885f9 8184352: Remove Sun provider information from KeyPairGenerator javadoc Reviewed-by: mullan ! src/java.base/share/classes/java/security/KeyPairGenerator.java Changeset: a51e6699 Branch: premain Author: SendaoYan Date: 2025-02-05 02:18:01 +0000 URL: https://git.openjdk.org/leyden/commit/a51e6699b497564de65620a36dc38437ca87cb32 8349200: [JMH] time.format.ZonedDateTimeFormatterBenchmark fails Reviewed-by: naoto, jlu ! test/micro/org/openjdk/bench/java/time/format/ZonedDateTimeFormatterBenchmark.java Changeset: 09269497 Branch: premain Author: Jan Lahoda Date: 2025-02-05 06:44:36 +0000 URL: https://git.openjdk.org/leyden/commit/09269497a27c732ce4644d0bb95e0380162398c9 8347629: Test FailOverDirectExecutionControlTest.java fails with -Xcomp Reviewed-by: liach ! test/langtools/jdk/jshell/FailOverDirectExecutionControlTest.java Changeset: 40603a5b Branch: premain Author: Matthias Baesken Date: 2025-02-05 08:05:56 +0000 URL: https://git.openjdk.org/leyden/commit/40603a5bf039eef03c157bfc49ac8ea2229a94de 8349214: Improve size optimization flags for MSVC builds Reviewed-by: djelinski, ihse ! make/autoconf/flags-cflags.m4 Changeset: 66a38984 Branch: premain Author: Bhavana Kilambi Committer: Aleksey Shipilev Date: 2025-02-05 08:37:21 +0000 URL: https://git.openjdk.org/leyden/commit/66a3898448023f1f22da7d7cbcf4c79a0eb59963 8348659: AArch64: IR rule failure with compiler/loopopts/superword/TestSplitPacks.java Reviewed-by: shade, epeter ! test/hotspot/jtreg/compiler/loopopts/superword/TestSplitPacks.java Changeset: 61465883 Branch: premain Author: Magnus Ihse Bursie Date: 2025-02-05 11:17:08 +0000 URL: https://git.openjdk.org/leyden/commit/61465883b465a184e31e7a03e2603d29ab4815a4 8348190: Framework for tracing makefile inclusion and parsing Reviewed-by: erikj ! .github/actions/get-gtest/action.yml ! .github/actions/get-jtreg/action.yml ! Makefile ! make/Bundles.gmk ! make/CompileCommands.gmk ! make/CompileDemos.gmk ! make/CompileInterimLangtools.gmk ! make/CompileJavaModules.gmk ! make/CompileModuleTools.gmk ! make/CompileToolsHotspot.gmk ! make/CompileToolsJdk.gmk ! make/CopyImportModules.gmk ! make/CopyInterimTZDB.gmk ! make/Coverage.gmk ! make/CreateJmods.gmk ! make/Docs.gmk ! make/Doctor.gmk ! make/ExplodedImageOptimize.gmk ! make/GenerateLinkOptData.gmk ! make/GenerateModuleSummary.gmk ! make/Global.gmk ! make/GraalBuilderImage.gmk ! make/Hsdis.gmk ! make/Images.gmk ! make/Init.gmk ! make/InitSupport.gmk ! make/InterimImage.gmk ! make/JrtfsJar.gmk ! make/MacBundles.gmk ! make/Main.gmk ! make/MainSupport.gmk ! make/ModuleTools.gmk ! make/ModuleWrapper.gmk ! make/PreInit.gmk ! make/PreInitSupport.gmk ! make/ReleaseFile.gmk ! make/RunTests.gmk ! make/RunTestsPrebuilt.gmk + make/RunTestsPrebuiltFindTests.gmk ! make/SourceRevision.gmk ! make/StaticLibs.gmk ! make/StaticLibsImage.gmk ! make/TestImage.gmk ! make/ToolsHotspot.gmk ! make/ToolsJdk.gmk ! make/ToolsLangtools.gmk ! make/UpdateBuildDocs.gmk ! make/UpdateSleefSource.gmk ! make/UpdateX11Wrappers.gmk ! make/ZipSecurity.gmk ! make/ZipSource.gmk ! make/common/CopyFiles.gmk ! make/common/DebugInfoUtils.gmk ! make/common/Execute.gmk ! make/common/FileUtils.gmk ! make/common/FindTests.gmk ! make/common/JarArchive.gmk ! make/common/JavaCompilation.gmk ! make/common/JdkNativeCompilation.gmk ! make/common/LogUtils.gmk ! make/common/MakeBase.gmk + make/common/MakeFileEnd.gmk + make/common/MakeFileStart.gmk ! make/common/MakeIO.gmk + make/common/MakeIncludeEnd.gmk + make/common/MakeIncludeStart.gmk + make/common/MakeSnippetEnd.gmk + make/common/MakeSnippetStart.gmk ! make/common/Modules.gmk ! make/common/NativeCompilation.gmk ! make/common/ProcessMarkdown.gmk ! make/common/TestFilesCompilation.gmk ! make/common/TextFileProcessing.gmk ! make/common/Utils.gmk ! make/common/ZipArchive.gmk ! make/common/modules/CopyCommon.gmk ! make/common/modules/GendataCommon.gmk ! make/common/modules/GensrcCommon.gmk ! make/common/modules/GensrcModuleInfo.gmk ! make/common/modules/GensrcProperties.gmk ! make/common/modules/LauncherCommon.gmk ! make/common/modules/LibCommon.gmk ! make/common/native/CompileFile.gmk ! make/common/native/DebugSymbols.gmk ! make/common/native/Flags.gmk ! make/common/native/Link.gmk ! make/common/native/LinkMicrosoft.gmk ! make/common/native/Paths.gmk ! make/hotspot/CopyToExplodedJdk.gmk ! make/hotspot/HotspotCommon.gmk ! make/hotspot/gensrc/GenerateSources.gmk ! make/hotspot/gensrc/GensrcAdlc.gmk ! make/hotspot/gensrc/GensrcDtrace.gmk ! make/hotspot/gensrc/GensrcJfr.gmk ! make/hotspot/gensrc/GensrcJvmti.gmk ! make/hotspot/lib/CompileGtest.gmk ! make/hotspot/lib/CompileJvm.gmk ! make/hotspot/lib/CompileLibraries.gmk ! make/hotspot/lib/JvmFeatures.gmk ! make/hotspot/lib/JvmFlags.gmk ! make/hotspot/lib/JvmOverrideFiles.gmk ! make/hotspot/test/GtestImage.gmk ! make/ide/eclipse/CreateWorkspace.gmk ! make/ide/idea/jdk/IdeaGenConfig.gmk ! make/ide/visualstudio/hotspot/CreateVSProject.gmk ! make/ide/vscode/hotspot/CreateVSCodeProject.gmk ! make/ide/xcode/hotspot/CreateXcodeProject.gmk ! make/modules/java.base/Copy.gmk ! make/modules/java.base/Gendata.gmk ! make/modules/java.base/Gensrc.gmk ! make/modules/java.base/Java.gmk ! make/modules/java.base/Launcher.gmk ! make/modules/java.base/Lib.gmk ! make/modules/java.base/gendata/GendataBlockedCerts.gmk ! make/modules/java.base/gendata/GendataBreakIterator.gmk ! make/modules/java.base/gendata/GendataCryptoPolicy.gmk ! make/modules/java.base/gendata/GendataPublicSuffixList.gmk ! make/modules/java.base/gendata/GendataTZDB.gmk ! make/modules/java.base/gensrc/GensrcBuffer.gmk ! make/modules/java.base/gensrc/GensrcCharacterData.gmk ! make/modules/java.base/gensrc/GensrcCharsetCoder.gmk ! make/modules/java.base/gensrc/GensrcCharsetMapping.gmk ! make/modules/java.base/gensrc/GensrcExceptions.gmk ! make/modules/java.base/gensrc/GensrcMisc.gmk ! make/modules/java.base/gensrc/GensrcModuleLoaderMap.gmk ! make/modules/java.base/gensrc/GensrcRegex.gmk ! make/modules/java.base/gensrc/GensrcScopedMemoryAccess.gmk ! make/modules/java.base/gensrc/GensrcVarHandles.gmk ! make/modules/java.base/lib/CoreLibraries.gmk ! make/modules/java.compiler/Java.gmk ! make/modules/java.datatransfer/Java.gmk ! make/modules/java.desktop/Copy.gmk ! make/modules/java.desktop/Gendata.gmk ! make/modules/java.desktop/Gensrc.gmk ! make/modules/java.desktop/Java.gmk ! make/modules/java.desktop/Lib.gmk ! make/modules/java.desktop/gendata/GendataFontConfig.gmk ! make/modules/java.desktop/gendata/GendataHtml32dtd.gmk ! make/modules/java.desktop/gensrc/GensrcIcons.gmk ! make/modules/java.desktop/gensrc/GensrcSwing.gmk ! make/modules/java.desktop/gensrc/GensrcX11Wrappers.gmk ! make/modules/java.desktop/lib/AwtLibraries.gmk ! make/modules/java.desktop/lib/ClientLibraries.gmk ! make/modules/java.instrument/Java.gmk ! make/modules/java.instrument/Lib.gmk ! make/modules/java.logging/Copy.gmk ! make/modules/java.logging/Gensrc.gmk ! make/modules/java.logging/Java.gmk ! make/modules/java.management.rmi/Java.gmk ! make/modules/java.management/Java.gmk ! make/modules/java.management/Lib.gmk ! make/modules/java.naming/Java.gmk ! make/modules/java.prefs/Java.gmk ! make/modules/java.prefs/Lib.gmk ! make/modules/java.rmi/Java.gmk ! make/modules/java.rmi/Launcher.gmk ! make/modules/java.rmi/Lib.gmk ! make/modules/java.scripting/Java.gmk ! make/modules/java.scripting/Launcher.gmk ! make/modules/java.security.jgss/Java.gmk ! make/modules/java.security.jgss/Launcher.gmk ! make/modules/java.security.jgss/Lib.gmk ! make/modules/java.security.sasl/Java.gmk ! make/modules/java.smartcardio/Java.gmk ! make/modules/java.smartcardio/Lib.gmk ! make/modules/java.sql.rowset/Java.gmk ! make/modules/java.sql/Java.gmk ! make/modules/java.transaction.xa/Java.gmk ! make/modules/java.xml.crypto/Java.gmk ! make/modules/java.xml/Copy.gmk ! make/modules/java.xml/Java.gmk ! make/modules/jdk.accessibility/Copy.gmk ! make/modules/jdk.accessibility/Java.gmk ! make/modules/jdk.accessibility/Launcher.gmk ! make/modules/jdk.accessibility/Lib.gmk ! make/modules/jdk.attach/Lib.gmk ! make/modules/jdk.charsets/Gensrc.gmk ! make/modules/jdk.charsets/Java.gmk ! make/modules/jdk.compiler/Gendata.gmk ! make/modules/jdk.compiler/Gensrc.gmk ! make/modules/jdk.compiler/Java.gmk ! make/modules/jdk.compiler/Launcher.gmk ! make/modules/jdk.crypto.cryptoki/Java.gmk ! make/modules/jdk.crypto.cryptoki/Lib.gmk ! make/modules/jdk.crypto.mscapi/Java.gmk ! make/modules/jdk.crypto.mscapi/Lib.gmk ! make/modules/jdk.dev/Java.gmk ! make/modules/jdk.dynalink/Java.gmk ! make/modules/jdk.editpad/Java.gmk ! make/modules/jdk.hotspot.agent/Gensrc.gmk ! make/modules/jdk.hotspot.agent/Java.gmk ! make/modules/jdk.hotspot.agent/Launcher.gmk ! make/modules/jdk.hotspot.agent/Lib.gmk ! make/modules/jdk.httpserver/Gensrc.gmk ! make/modules/jdk.httpserver/Java.gmk ! make/modules/jdk.httpserver/Jmod.gmk ! make/modules/jdk.httpserver/Launcher.gmk ! make/modules/jdk.incubator.vector/Java.gmk ! make/modules/jdk.incubator.vector/Lib.gmk ! make/modules/jdk.internal.jvmstat/Java.gmk ! make/modules/jdk.internal.le/Java.gmk ! make/modules/jdk.internal.md/Java.gmk ! make/modules/jdk.internal.opt/Java.gmk ! make/modules/jdk.internal.vm.ci/Java.gmk ! make/modules/jdk.jartool/Gensrc.gmk ! make/modules/jdk.jartool/Java.gmk ! make/modules/jdk.jartool/Jmod.gmk ! make/modules/jdk.jartool/Launcher.gmk ! make/modules/jdk.javadoc/Copy.gmk ! make/modules/jdk.javadoc/Gendata.gmk ! make/modules/jdk.javadoc/Gensrc.gmk ! make/modules/jdk.javadoc/Java.gmk ! make/modules/jdk.javadoc/Launcher.gmk ! make/modules/jdk.jcmd/Java.gmk ! make/modules/jdk.jcmd/Launcher.gmk ! make/modules/jdk.jconsole/Java.gmk ! make/modules/jdk.jconsole/Launcher.gmk ! make/modules/jdk.jdeps/Gensrc.gmk ! make/modules/jdk.jdeps/Java.gmk ! make/modules/jdk.jdeps/Launcher.gmk ! make/modules/jdk.jdi/Gensrc.gmk ! make/modules/jdk.jdi/Java.gmk ! make/modules/jdk.jdi/Launcher.gmk ! make/modules/jdk.jdi/Lib.gmk ! make/modules/jdk.jdwp.agent/Copy.gmk ! make/modules/jdk.jdwp.agent/Lib.gmk ! make/modules/jdk.jfr/Copy.gmk ! make/modules/jdk.jfr/Gendata.gmk ! make/modules/jdk.jfr/Java.gmk ! make/modules/jdk.jfr/Jmod.gmk ! make/modules/jdk.jfr/Launcher.gmk ! make/modules/jdk.jlink/Gensrc.gmk ! make/modules/jdk.jlink/Launcher.gmk ! make/modules/jdk.jpackage/Gensrc.gmk ! make/modules/jdk.jpackage/Java.gmk ! make/modules/jdk.jpackage/Jmod.gmk ! make/modules/jdk.jpackage/Launcher.gmk ! make/modules/jdk.jpackage/Lib.gmk ! make/modules/jdk.jshell/Gensrc.gmk ! make/modules/jdk.jshell/Java.gmk ! make/modules/jdk.jshell/Jmod.gmk ! make/modules/jdk.jshell/Launcher.gmk ! make/modules/jdk.jstatd/Jmod.gmk ! make/modules/jdk.jstatd/Launcher.gmk ! make/modules/jdk.localedata/Gensrc.gmk ! make/modules/jdk.localedata/Java.gmk ! make/modules/jdk.management.agent/Copy.gmk ! make/modules/jdk.management.agent/Gensrc.gmk ! make/modules/jdk.management.agent/Lib.gmk ! make/modules/jdk.management/Java.gmk ! make/modules/jdk.management/Lib.gmk ! make/modules/jdk.net/Lib.gmk ! make/modules/jdk.sctp/Java.gmk ! make/modules/jdk.sctp/Lib.gmk ! make/modules/jdk.security.auth/Java.gmk ! make/modules/jdk.security.auth/Lib.gmk ! make/modules/sun.charsets/Java.gmk ! make/test/BuildFailureHandler.gmk ! make/test/BuildJtregTestThreadFactory.gmk ! make/test/BuildMicrobenchmark.gmk ! make/test/BuildTestLib.gmk ! make/test/BuildTestLibNative.gmk ! make/test/JtregNativeHotspot.gmk ! make/test/JtregNativeJdk.gmk ! make/test/JtregNativeLibTest.gmk ! test/make/TestCompileCommands.gmk ! test/make/TestCopyFiles.gmk ! test/make/TestFixDepsFile.gmk ! test/make/TestIdea.gmk ! test/make/TestJavaCompilation.gmk ! test/make/TestMake.gmk ! test/make/TestMakeBase.gmk ! test/make/UtilsForTests.gmk Changeset: 19399d27 Branch: premain Author: Emanuel Peter Date: 2025-02-05 12:58:43 +0000 URL: https://git.openjdk.org/leyden/commit/19399d271ef00f925232fbbe9087b5772f2fca01 8348572: C2 compilation asserts due to unexpected irreducible loop Reviewed-by: thartmann, kvn ! src/hotspot/share/opto/c2_globals.hpp ! src/hotspot/share/opto/cfgnode.cpp ! src/hotspot/share/opto/cfgnode.hpp ! src/hotspot/share/opto/loopnode.cpp + test/hotspot/jtreg/compiler/loopopts/TestSplitIfNewIrreducibleLoop.java Changeset: 2ff8440c Branch: premain Author: Per Minborg Date: 2025-02-05 13:48:34 +0000 URL: https://git.openjdk.org/leyden/commit/2ff8440c76bb090634ecf4e6faa523498fd1d9f3 8349344: Clarify documentation of Arena.ofConfined Reviewed-by: jvernee, jpai, mcimadamore ! src/java.base/share/classes/java/lang/foreign/Arena.java Changeset: 6b994cd8 Branch: premain Author: Roland Westrelin Date: 2025-02-05 13:54:35 +0000 URL: https://git.openjdk.org/leyden/commit/6b994cd8ccba4f5d0199cb2925f0a6b5450ac115 8333697: C2: Hit MemLimit in PhaseCFG::global_code_motion Reviewed-by: thartmann, kvn ! src/hotspot/share/opto/indexSet.cpp ! src/hotspot/share/opto/indexSet.hpp ! test/hotspot/jtreg/compiler/escapeAnalysis/TestFindInstMemRecursion.java Changeset: b9b62a02 Branch: premain Author: Serguei Spitsyn Date: 2025-02-05 16:03:39 +0000 URL: https://git.openjdk.org/leyden/commit/b9b62a02488ee9c1a5a7a9ede87505781dfc0f73 8346792: serviceability/jvmti/vthread/GetThreadState/GetThreadState.java testObjectWaitMillis failed Reviewed-by: dholmes, pchilanomate ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/runtime/objectMonitor.cpp ! src/hotspot/share/services/threadService.hpp Changeset: 2f2f7cf0 Branch: premain Author: Mark Powers Date: 2025-02-05 18:04:00 +0000 URL: https://git.openjdk.org/leyden/commit/2f2f7cf0dddd82f11d6dfc4f8a5401ec1c5629dc 8349084: Update vectors used in several PQC benchmarks Reviewed-by: weijun ! test/micro/org/openjdk/bench/java/security/HSS.java ! test/micro/org/openjdk/bench/java/security/MLDSA.java ! test/micro/org/openjdk/bench/java/security/MLKEMBench.java Changeset: 82bc0a7f Branch: premain Author: Mikhail Yankelevich Committer: Weijun Wang Date: 2025-02-05 18:23:25 +0000 URL: https://git.openjdk.org/leyden/commit/82bc0a7f8c7ee63d2f8c3db57dc22f39963ae022 8344316: security/auth/callback/TextCallbackHandler/Password.java make runnable with JTReg and add the UI Reviewed-by: weijun ! test/jdk/com/sun/security/auth/callback/TextCallbackHandler/Password.java Changeset: 379c3f99 Branch: premain Author: Damon Nguyen Date: 2025-02-05 18:43:19 +0000 URL: https://git.openjdk.org/leyden/commit/379c3f99665829c5d8c373d1fb324dc7ef4d84cf 8347836: Disabled PopupMenu shows shortcuts on Mac Reviewed-by: azvegint, achung, kizune, abhiscxk ! test/jdk/java/awt/PopupMenu/PopupMenuVisuals.java Changeset: b499c827 Branch: premain Author: Brian Burkhalter Date: 2025-02-05 21:40:47 +0000 URL: https://git.openjdk.org/leyden/commit/b499c827a512fb209a806d95b97df0f5932a29c0 8349383: (fs) FileTreeWalker.next() superfluous null check of visit() return value Reviewed-by: djelinski ! src/java.base/share/classes/java/nio/file/FileTreeWalker.java Changeset: aad6664b Branch: premain Author: Alexey Semenyuk Date: 2025-02-05 23:23:54 +0000 URL: https://git.openjdk.org/leyden/commit/aad6664bb6d2b311b3e0cb056afaa9b6534bdbbb 8333569: jpackage tests must run app launchers with retries on Linux only Reviewed-by: almatvee ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/HelloApp.java ! test/jdk/tools/jpackage/share/AppLauncherEnvTest.java ! test/jdk/tools/jpackage/windows/WinChildProcessTest.java Changeset: 89e5e7ab Branch: premain Author: Archie Cobbs Date: 2025-02-06 01:52:51 +0000 URL: https://git.openjdk.org/leyden/commit/89e5e7ab73472b7d02aac5b8b0c7e9f26db6ec32 8349155: The "log" parameter to Lint.logIfEnabled() is not needed Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Lint.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Flow.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassReader.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/processing/JavacFiler.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java Changeset: 5e1cc082 Branch: premain Author: Alexey Semenyuk Date: 2025-02-06 02:27:43 +0000 URL: https://git.openjdk.org/leyden/commit/5e1cc0825938527bd7011ade8b237e34c821862c 8349504: Support platform-specific JUnit tests in jpackage Reviewed-by: almatvee ! test/jdk/tools/jpackage/junit/TEST.properties = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/AppImageFileTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/ApplicationLayoutTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/DeployParamsTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/DottedVersionTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/EnquoterTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/OverridableResourceTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/PathGroupTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/PlatformVersionTest.java = test/jdk/tools/jpackage/junit/share/jdk.jpackage/jdk/jpackage/internal/ToolValidatorTest.java Changeset: 64bd8d25 Branch: premain Author: David Holmes Date: 2025-02-06 02:51:12 +0000 URL: https://git.openjdk.org/leyden/commit/64bd8d2592d26e02a7f2f96caa47cba5e158aaa2 8349511: [BACKOUT] Framework for tracing makefile inclusion and parsing Reviewed-by: darcy, mikael ! .github/actions/get-gtest/action.yml ! .github/actions/get-jtreg/action.yml ! Makefile ! make/Bundles.gmk ! make/CompileCommands.gmk ! make/CompileDemos.gmk ! make/CompileInterimLangtools.gmk ! make/CompileJavaModules.gmk ! make/CompileModuleTools.gmk ! make/CompileToolsHotspot.gmk ! make/CompileToolsJdk.gmk ! make/CopyImportModules.gmk ! make/CopyInterimTZDB.gmk ! make/Coverage.gmk ! make/CreateJmods.gmk ! make/Docs.gmk ! make/Doctor.gmk ! make/ExplodedImageOptimize.gmk ! make/GenerateLinkOptData.gmk ! make/GenerateModuleSummary.gmk ! make/Global.gmk ! make/GraalBuilderImage.gmk ! make/Hsdis.gmk ! make/Images.gmk ! make/Init.gmk ! make/InitSupport.gmk ! make/InterimImage.gmk ! make/JrtfsJar.gmk ! make/MacBundles.gmk ! make/Main.gmk ! make/MainSupport.gmk ! make/ModuleTools.gmk ! make/ModuleWrapper.gmk ! make/PreInit.gmk ! make/PreInitSupport.gmk ! make/ReleaseFile.gmk ! make/RunTests.gmk ! make/RunTestsPrebuilt.gmk - make/RunTestsPrebuiltFindTests.gmk ! make/SourceRevision.gmk ! make/StaticLibs.gmk ! make/StaticLibsImage.gmk ! make/TestImage.gmk ! make/ToolsHotspot.gmk ! make/ToolsJdk.gmk ! make/ToolsLangtools.gmk ! make/UpdateBuildDocs.gmk ! make/UpdateSleefSource.gmk ! make/UpdateX11Wrappers.gmk ! make/ZipSecurity.gmk ! make/ZipSource.gmk ! make/common/CopyFiles.gmk ! make/common/DebugInfoUtils.gmk ! make/common/Execute.gmk ! make/common/FileUtils.gmk ! make/common/FindTests.gmk ! make/common/JarArchive.gmk ! make/common/JavaCompilation.gmk ! make/common/JdkNativeCompilation.gmk ! make/common/LogUtils.gmk ! make/common/MakeBase.gmk - make/common/MakeFileEnd.gmk - make/common/MakeFileStart.gmk ! make/common/MakeIO.gmk - make/common/MakeIncludeEnd.gmk - make/common/MakeIncludeStart.gmk - make/common/MakeSnippetEnd.gmk - make/common/MakeSnippetStart.gmk ! make/common/Modules.gmk ! make/common/NativeCompilation.gmk ! make/common/ProcessMarkdown.gmk ! make/common/TestFilesCompilation.gmk ! make/common/TextFileProcessing.gmk ! make/common/Utils.gmk ! make/common/ZipArchive.gmk ! make/common/modules/CopyCommon.gmk ! make/common/modules/GendataCommon.gmk ! make/common/modules/GensrcCommon.gmk ! make/common/modules/GensrcModuleInfo.gmk ! make/common/modules/GensrcProperties.gmk ! make/common/modules/LauncherCommon.gmk ! make/common/modules/LibCommon.gmk ! make/common/native/CompileFile.gmk ! make/common/native/DebugSymbols.gmk ! make/common/native/Flags.gmk ! make/common/native/Link.gmk ! make/common/native/LinkMicrosoft.gmk ! make/common/native/Paths.gmk ! make/hotspot/CopyToExplodedJdk.gmk ! make/hotspot/HotspotCommon.gmk ! make/hotspot/gensrc/GenerateSources.gmk ! make/hotspot/gensrc/GensrcAdlc.gmk ! make/hotspot/gensrc/GensrcDtrace.gmk ! make/hotspot/gensrc/GensrcJfr.gmk ! make/hotspot/gensrc/GensrcJvmti.gmk ! make/hotspot/lib/CompileGtest.gmk ! make/hotspot/lib/CompileJvm.gmk ! make/hotspot/lib/CompileLibraries.gmk ! make/hotspot/lib/JvmFeatures.gmk ! make/hotspot/lib/JvmFlags.gmk ! make/hotspot/lib/JvmOverrideFiles.gmk ! make/hotspot/test/GtestImage.gmk ! make/ide/eclipse/CreateWorkspace.gmk ! make/ide/idea/jdk/IdeaGenConfig.gmk ! make/ide/visualstudio/hotspot/CreateVSProject.gmk ! make/ide/vscode/hotspot/CreateVSCodeProject.gmk ! make/ide/xcode/hotspot/CreateXcodeProject.gmk ! make/modules/java.base/Copy.gmk ! make/modules/java.base/Gendata.gmk ! make/modules/java.base/Gensrc.gmk ! make/modules/java.base/Java.gmk ! make/modules/java.base/Launcher.gmk ! make/modules/java.base/Lib.gmk ! make/modules/java.base/gendata/GendataBlockedCerts.gmk ! make/modules/java.base/gendata/GendataBreakIterator.gmk ! make/modules/java.base/gendata/GendataCryptoPolicy.gmk ! make/modules/java.base/gendata/GendataPublicSuffixList.gmk ! make/modules/java.base/gendata/GendataTZDB.gmk ! make/modules/java.base/gensrc/GensrcBuffer.gmk ! make/modules/java.base/gensrc/GensrcCharacterData.gmk ! make/modules/java.base/gensrc/GensrcCharsetCoder.gmk ! make/modules/java.base/gensrc/GensrcCharsetMapping.gmk ! make/modules/java.base/gensrc/GensrcExceptions.gmk ! make/modules/java.base/gensrc/GensrcMisc.gmk ! make/modules/java.base/gensrc/GensrcModuleLoaderMap.gmk ! make/modules/java.base/gensrc/GensrcRegex.gmk ! make/modules/java.base/gensrc/GensrcScopedMemoryAccess.gmk ! make/modules/java.base/gensrc/GensrcVarHandles.gmk ! make/modules/java.base/lib/CoreLibraries.gmk ! make/modules/java.compiler/Java.gmk ! make/modules/java.datatransfer/Java.gmk ! make/modules/java.desktop/Copy.gmk ! make/modules/java.desktop/Gendata.gmk ! make/modules/java.desktop/Gensrc.gmk ! make/modules/java.desktop/Java.gmk ! make/modules/java.desktop/Lib.gmk ! make/modules/java.desktop/gendata/GendataFontConfig.gmk ! make/modules/java.desktop/gendata/GendataHtml32dtd.gmk ! make/modules/java.desktop/gensrc/GensrcIcons.gmk ! make/modules/java.desktop/gensrc/GensrcSwing.gmk ! make/modules/java.desktop/gensrc/GensrcX11Wrappers.gmk ! make/modules/java.desktop/lib/AwtLibraries.gmk ! make/modules/java.desktop/lib/ClientLibraries.gmk ! make/modules/java.instrument/Java.gmk ! make/modules/java.instrument/Lib.gmk ! make/modules/java.logging/Copy.gmk ! make/modules/java.logging/Gensrc.gmk ! make/modules/java.logging/Java.gmk ! make/modules/java.management.rmi/Java.gmk ! make/modules/java.management/Java.gmk ! make/modules/java.management/Lib.gmk ! make/modules/java.naming/Java.gmk ! make/modules/java.prefs/Java.gmk ! make/modules/java.prefs/Lib.gmk ! make/modules/java.rmi/Java.gmk ! make/modules/java.rmi/Launcher.gmk ! make/modules/java.rmi/Lib.gmk ! make/modules/java.scripting/Java.gmk ! make/modules/java.scripting/Launcher.gmk ! make/modules/java.security.jgss/Java.gmk ! make/modules/java.security.jgss/Launcher.gmk ! make/modules/java.security.jgss/Lib.gmk ! make/modules/java.security.sasl/Java.gmk ! make/modules/java.smartcardio/Java.gmk ! make/modules/java.smartcardio/Lib.gmk ! make/modules/java.sql.rowset/Java.gmk ! make/modules/java.sql/Java.gmk ! make/modules/java.transaction.xa/Java.gmk ! make/modules/java.xml.crypto/Java.gmk ! make/modules/java.xml/Copy.gmk ! make/modules/java.xml/Java.gmk ! make/modules/jdk.accessibility/Copy.gmk ! make/modules/jdk.accessibility/Java.gmk ! make/modules/jdk.accessibility/Launcher.gmk ! make/modules/jdk.accessibility/Lib.gmk ! make/modules/jdk.attach/Lib.gmk ! make/modules/jdk.charsets/Gensrc.gmk ! make/modules/jdk.charsets/Java.gmk ! make/modules/jdk.compiler/Gendata.gmk ! make/modules/jdk.compiler/Gensrc.gmk ! make/modules/jdk.compiler/Java.gmk ! make/modules/jdk.compiler/Launcher.gmk ! make/modules/jdk.crypto.cryptoki/Java.gmk ! make/modules/jdk.crypto.cryptoki/Lib.gmk ! make/modules/jdk.crypto.mscapi/Java.gmk ! make/modules/jdk.crypto.mscapi/Lib.gmk ! make/modules/jdk.dev/Java.gmk ! make/modules/jdk.dynalink/Java.gmk ! make/modules/jdk.editpad/Java.gmk ! make/modules/jdk.hotspot.agent/Gensrc.gmk ! make/modules/jdk.hotspot.agent/Java.gmk ! make/modules/jdk.hotspot.agent/Launcher.gmk ! make/modules/jdk.hotspot.agent/Lib.gmk ! make/modules/jdk.httpserver/Gensrc.gmk ! make/modules/jdk.httpserver/Java.gmk ! make/modules/jdk.httpserver/Jmod.gmk ! make/modules/jdk.httpserver/Launcher.gmk ! make/modules/jdk.incubator.vector/Java.gmk ! make/modules/jdk.incubator.vector/Lib.gmk ! make/modules/jdk.internal.jvmstat/Java.gmk ! make/modules/jdk.internal.le/Java.gmk ! make/modules/jdk.internal.md/Java.gmk ! make/modules/jdk.internal.opt/Java.gmk ! make/modules/jdk.internal.vm.ci/Java.gmk ! make/modules/jdk.jartool/Gensrc.gmk ! make/modules/jdk.jartool/Java.gmk ! make/modules/jdk.jartool/Jmod.gmk ! make/modules/jdk.jartool/Launcher.gmk ! make/modules/jdk.javadoc/Copy.gmk ! make/modules/jdk.javadoc/Gendata.gmk ! make/modules/jdk.javadoc/Gensrc.gmk ! make/modules/jdk.javadoc/Java.gmk ! make/modules/jdk.javadoc/Launcher.gmk ! make/modules/jdk.jcmd/Java.gmk ! make/modules/jdk.jcmd/Launcher.gmk ! make/modules/jdk.jconsole/Java.gmk ! make/modules/jdk.jconsole/Launcher.gmk ! make/modules/jdk.jdeps/Gensrc.gmk ! make/modules/jdk.jdeps/Java.gmk ! make/modules/jdk.jdeps/Launcher.gmk ! make/modules/jdk.jdi/Gensrc.gmk ! make/modules/jdk.jdi/Java.gmk ! make/modules/jdk.jdi/Launcher.gmk ! make/modules/jdk.jdi/Lib.gmk ! make/modules/jdk.jdwp.agent/Copy.gmk ! make/modules/jdk.jdwp.agent/Lib.gmk ! make/modules/jdk.jfr/Copy.gmk ! make/modules/jdk.jfr/Gendata.gmk ! make/modules/jdk.jfr/Java.gmk ! make/modules/jdk.jfr/Jmod.gmk ! make/modules/jdk.jfr/Launcher.gmk ! make/modules/jdk.jlink/Gensrc.gmk ! make/modules/jdk.jlink/Launcher.gmk ! make/modules/jdk.jpackage/Gensrc.gmk ! make/modules/jdk.jpackage/Java.gmk ! make/modules/jdk.jpackage/Jmod.gmk ! make/modules/jdk.jpackage/Launcher.gmk ! make/modules/jdk.jpackage/Lib.gmk ! make/modules/jdk.jshell/Gensrc.gmk ! make/modules/jdk.jshell/Java.gmk ! make/modules/jdk.jshell/Jmod.gmk ! make/modules/jdk.jshell/Launcher.gmk ! make/modules/jdk.jstatd/Jmod.gmk ! make/modules/jdk.jstatd/Launcher.gmk ! make/modules/jdk.localedata/Gensrc.gmk ! make/modules/jdk.localedata/Java.gmk ! make/modules/jdk.management.agent/Copy.gmk ! make/modules/jdk.management.agent/Gensrc.gmk ! make/modules/jdk.management.agent/Lib.gmk ! make/modules/jdk.management/Java.gmk ! make/modules/jdk.management/Lib.gmk ! make/modules/jdk.net/Lib.gmk ! make/modules/jdk.sctp/Java.gmk ! make/modules/jdk.sctp/Lib.gmk ! make/modules/jdk.security.auth/Java.gmk ! make/modules/jdk.security.auth/Lib.gmk ! make/modules/sun.charsets/Java.gmk ! make/test/BuildFailureHandler.gmk ! make/test/BuildJtregTestThreadFactory.gmk ! make/test/BuildMicrobenchmark.gmk ! make/test/BuildTestLib.gmk ! make/test/BuildTestLibNative.gmk ! make/test/JtregNativeHotspot.gmk ! make/test/JtregNativeJdk.gmk ! make/test/JtregNativeLibTest.gmk ! test/make/TestCompileCommands.gmk ! test/make/TestCopyFiles.gmk ! test/make/TestFixDepsFile.gmk ! test/make/TestIdea.gmk ! test/make/TestJavaCompilation.gmk ! test/make/TestMake.gmk ! test/make/TestMakeBase.gmk ! test/make/UtilsForTests.gmk Changeset: 30f71622 Branch: premain Author: David Holmes Date: 2025-02-06 07:32:22 +0000 URL: https://git.openjdk.org/leyden/commit/30f71622a1c86e297bf6d4b24d90e7531a0f19c2 8349417: Fix NULL usage from JDK-8346433 Reviewed-by: chagedorn ! src/hotspot/os/windows/os_windows.cpp Changeset: 3cf04dec Branch: premain Author: Jan Lahoda Date: 2025-02-06 07:34:28 +0000 URL: https://git.openjdk.org/leyden/commit/3cf04dec493d28730d4462257f64ea636f58d7e5 8349132: javac Analyzers should handle non-deferrable errors Reviewed-by: abimpoudis ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Analyzer.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/Log.java + test/langtools/tools/javac/analyzer/Diamond.java Changeset: 3eb57f6d Branch: premain Author: Matthias Baesken Date: 2025-02-06 08:08:59 +0000 URL: https://git.openjdk.org/leyden/commit/3eb57f6d46b4375cb02b575739a1c12f71e088cf 8349140: Size optimization (opt-size) build fails after recent PCH changes Reviewed-by: jwaters, erikj, ihse ! make/hotspot/lib/JvmOverrideFiles.gmk Changeset: 7e307916 Branch: premain Author: Andrew Dinn Date: 2025-02-06 09:14:50 +0000 URL: https://git.openjdk.org/leyden/commit/7e307916ecbf1ae9795e42e5b5a8347daad4af8c 8349102: Test compiler/arguments/TestCodeEntryAlignment.java failed: assert(allocates2(pc)) failed: not in CodeBuffer memory Reviewed-by: dlong ! src/hotspot/cpu/x86/stubDeclarations_x86.hpp ! test/hotspot/jtreg/ProblemList.txt Changeset: d85f6514 Branch: premain Author: Gui Cao Committer: Hamlin Li Date: 2025-02-06 09:31:54 +0000 URL: https://git.openjdk.org/leyden/commit/d85f65147aeb4009742bfe401c6070d920b71b3e 8349428: RISC-V: "bad alignment" with -XX:-AvoidUnalignedAccesses after JDK-8347489 Reviewed-by: fyang, mli ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/stubGenerator_riscv.cpp Changeset: acb46ddb Branch: premain Author: SendaoYan Date: 2025-02-06 09:33:02 +0000 URL: https://git.openjdk.org/leyden/commit/acb46ddb8901a4e96238de217d3e7931f381b699 8345155: Add /native to native test in FFM Reviewed-by: mcimadamore, pminborg ! test/jdk/java/foreign/LibraryLookupTest.java ! test/jdk/java/foreign/SafeFunctionAccessTest.java ! test/jdk/java/foreign/Test4BAlignedDouble.java ! test/jdk/java/foreign/TestAddressDereference.java ! test/jdk/java/foreign/TestClassLoaderFindNative.java ! test/jdk/java/foreign/TestDowncallScope.java ! test/jdk/java/foreign/TestDowncallStack.java ! test/jdk/java/foreign/TestHFA.java ! test/jdk/java/foreign/TestIntrinsics.java ! test/jdk/java/foreign/TestNULLAddress.java ! test/jdk/java/foreign/TestNative.java ! test/jdk/java/foreign/TestScope.java ! test/jdk/java/foreign/TestUpcallAsync.java ! test/jdk/java/foreign/TestUpcallScope.java ! test/jdk/java/foreign/TestUpcallStack.java ! test/jdk/java/foreign/TestVarArgs.java ! test/jdk/java/foreign/arraystructs/TestArrayStructs.java ! test/jdk/java/foreign/capturecallstate/TestCaptureCallState.java ! test/jdk/java/foreign/critical/TestCritical.java ! test/jdk/java/foreign/critical/TestCriticalUpcall.java ! test/jdk/java/foreign/dontrelease/TestDontRelease.java ! test/jdk/java/foreign/enablenativeaccess/TestEnableNativeAccess.java ! test/jdk/java/foreign/enablenativeaccess/TestEnableNativeAccessJarManifest.java ! test/jdk/java/foreign/loaderLookup/TestLoaderLookup.java ! test/jdk/java/foreign/loaderLookup/TestLoaderLookupJNI.java ! test/jdk/java/foreign/loaderLookup/TestSymbolLookupFindOrThrow.java ! test/jdk/java/foreign/nested/TestNested.java ! test/jdk/java/foreign/normalize/TestNormalize.java ! test/jdk/java/foreign/passheapsegment/TestPassHeapSegment.java ! test/jdk/java/foreign/stackwalk/TestAsyncStackWalk.java ! test/jdk/java/foreign/stackwalk/TestReentrantUpcalls.java ! test/jdk/java/foreign/stackwalk/TestStackWalk.java ! test/jdk/java/foreign/upcalldeopt/TestUpcallDeopt.java ! test/jdk/java/foreign/virtual/TestVirtualCalls.java Changeset: 4618993e Branch: premain Author: Tobias Hartmann Date: 2025-02-06 10:41:30 +0000 URL: https://git.openjdk.org/leyden/commit/4618993e27c806e5b349de98c020a91475727d65 8349537: Bad copyright in TestArrayStructs.java Reviewed-by: jpai ! test/jdk/java/foreign/arraystructs/TestArrayStructs.java ! test/jdk/java/foreign/loaderLookup/TestSymbolLookupFindOrThrow.java Changeset: dd8720e9 Branch: premain Author: Amit Kumar Date: 2025-02-06 13:15:18 +0000 URL: https://git.openjdk.org/leyden/commit/dd8720e90dc5475afd4ccc7321bb5cd97282e101 8348520: [s390x] Problemlist TestVectorReinterpret.java Reviewed-by: mdoerr ! test/hotspot/jtreg/ProblemList.txt Changeset: 2093bb74 Branch: premain Author: Alexey Semenyuk Date: 2025-02-06 14:10:44 +0000 URL: https://git.openjdk.org/leyden/commit/2093bb74676620c416e42fb94b6f5a482700926b 8346434: Add test for non-automatic service binding Reviewed-by: almatvee ! test/jdk/tools/jpackage/apps/PrintEnv.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Comm.java ! test/jdk/tools/jpackage/share/JLinkOptionsTest.java Changeset: 2b82e2d5 Branch: premain Author: Archie Cobbs Date: 2025-02-06 14:32:25 +0000 URL: https://git.openjdk.org/leyden/commit/2b82e2d57bdb8cb677764abc99d70f6d03295625 8347958: Minor compiler cleanups relating to MandatoryWarningHandler Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Preview.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/MandatoryWarningHandler.java Changeset: e0487c7c Branch: premain Author: Christian Hagedorn Date: 2025-02-06 14:49:28 +0000 URL: https://git.openjdk.org/leyden/commit/e0487c7cbc16fdfe26d22f2b6e65bca7d4398252 8346777: Add missing const declarations and rename variables Reviewed-by: epeter, thartmann ! src/hotspot/share/opto/predicates.cpp ! src/hotspot/share/opto/predicates.hpp Changeset: 3fbae32d Branch: premain Author: SendaoYan Date: 2025-02-06 15:01:05 +0000 URL: https://git.openjdk.org/leyden/commit/3fbae32d0a9dbe612d4170e135a813c114fdcec2 8349465: [UBSAN] test_os_reserve_between.cpp reported applying non-zero offset to null pointer Reviewed-by: mdoerr, amitkumar ! test/hotspot/gtest/runtime/test_os_reserve_between.cpp Changeset: 5ec1aae2 Branch: premain Author: Viktor Klang Date: 2025-02-06 15:02:21 +0000 URL: https://git.openjdk.org/leyden/commit/5ec1aae21e80d86c55df28a86935f50ae77f7b41 8347842: ThreadPoolExecutor specification discusses RuntimePermission Reviewed-by: alanb, jpai ! src/java.base/share/classes/java/util/concurrent/ThreadPoolExecutor.java Changeset: f12d2de5 Branch: premain Author: Nizar Benalla Date: 2025-02-06 16:14:30 +0000 URL: https://git.openjdk.org/leyden/commit/f12d2de53a62ec1c2c98e90409b27811de0560e1 8345212: Since checker should better handle non numeric values Reviewed-by: liach ! test/jdk/tools/sincechecker/SinceChecker.java Changeset: eb847026 Branch: premain Author: Jiangli Zhou Date: 2025-02-06 16:15:35 +0000 URL: https://git.openjdk.org/leyden/commit/eb84702626ef1ededc55969923958e8c2835d821 8349513: Remove unused BUILD_JDK_JTREG_LIBRARIES_JDK_LIBS_libTracePinnedThreads Reviewed-by: dholmes, erikj ! make/test/JtregNativeJdk.gmk Changeset: 1ab1c1d5 Branch: premain Author: Liam Miller-Cushon Date: 2025-02-06 17:33:44 +0000 URL: https://git.openjdk.org/leyden/commit/1ab1c1d53b86228be85aac96fa5d69db39ac6317 8349058: 'internal proprietary API' warnings make javac warnings unusable Reviewed-by: vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/ClassFinder.java ! test/langtools/tools/javac/options/system/SystemSunProprietary.java Changeset: ed8945a6 Branch: premain Author: Harshitha Onkar Date: 2025-02-06 18:30:39 +0000 URL: https://git.openjdk.org/leyden/commit/ed8945a68a67dd51a7cfa332905941afccc12b36 8347377: Add validation checks for ICC_Profile header fields Reviewed-by: prr, jdv ! src/java.desktop/share/classes/java/awt/color/ICC_ColorSpace.java ! src/java.desktop/share/classes/java/awt/color/ICC_Profile.java + test/jdk/java/awt/color/ICC_Profile/ValidateICCHeaderData/ValidateICCHeaderData.java = test/jdk/java/awt/color/ICC_Profile/ValidateICCHeaderData/invalidSRGB.icc Changeset: 0181030b Branch: premain Author: Brian Burkhalter Date: 2025-02-06 19:10:26 +0000 URL: https://git.openjdk.org/leyden/commit/0181030bdc300f1d8fe02c3e2e599c997a4ab876 8349006: File.getCanonicalPath should remove "(on UNIX platforms)" from its specification Reviewed-by: jlu, naoto ! src/java.base/share/classes/java/io/File.java Changeset: 1a74ee64 Branch: premain Author: Brian Burkhalter Date: 2025-02-06 19:11:35 +0000 URL: https://git.openjdk.org/leyden/commit/1a74ee64eb835c3395fe763c42fd36e2a720f441 8349092: File.getFreeSpace violates specification if quotas are in effect (win) Reviewed-by: naoto ! src/java.base/windows/classes/java/io/WinNTFileSystem.java ! test/jdk/java/io/File/GetXSpace.java Changeset: 10791477 Branch: premain Author: Aleksey Shipilev Date: 2025-02-06 20:20:43 +0000 URL: https://git.openjdk.org/leyden/commit/10791477cf0a0a31d2703fc718a7a649d494d534 8348570: CTW: Expose the code hidden by uncommon traps Reviewed-by: kvn, thartmann ! test/hotspot/jtreg/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java ! test/hotspot/jtreg/testlibrary/ctw/src/sun/hotspot/tools/ctw/CtwRunner.java Changeset: a0c7f661 Branch: premain Author: Calvin Cheung Date: 2025-02-06 22:31:19 +0000 URL: https://git.openjdk.org/leyden/commit/a0c7f661bedaf50b22cf83c798be46e8e5004b60 8349508: runtime/cds/appcds/TestParallelGCWithCDS.java should not check for specific output Reviewed-by: dholmes, iklam ! test/hotspot/jtreg/runtime/cds/appcds/TestParallelGCWithCDS.java ! test/hotspot/jtreg/runtime/cds/appcds/TestSerialGCWithCDS.java Changeset: 1eb54e42 Branch: premain Author: Fernando Guallini Committer: Rajan Halade Date: 2025-02-07 00:31:11 +0000 URL: https://git.openjdk.org/leyden/commit/1eb54e4228ba9319ac2f980055ed366dd861ec0b 8346049: jdk/test/lib/security/timestamp/TsaServer.java warnings Reviewed-by: weijun, rhalade, hchao, lmesnik ! test/lib/jdk/test/lib/security/timestamp/TsaServer.java Changeset: 3989a199 Branch: premain Author: Joe Wang Date: 2025-02-07 02:26:20 +0000 URL: https://git.openjdk.org/leyden/commit/3989a199578fc1d91988cfdbb95f11dd6d4c7b81 8344925: translet-name ignored when package-name is also set Reviewed-by: lancea, iris, naoto ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/XSLTC.java ! src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/TransformerFactoryImpl.java + test/jaxp/javax/xml/jaxp/libs/jaxp/library/JUnitTestUtil.java + test/jaxp/javax/xml/jaxp/unittest/transform/PropertiesTest.java Changeset: 006ed5c0 Branch: premain Author: Matthias Baesken Date: 2025-02-07 07:43:43 +0000 URL: https://git.openjdk.org/leyden/commit/006ed5c02b47d12fdcc070f50cfeb77d5c158bca 8349375: Cleanup AIX special file build settings Reviewed-by: mdoerr, clanger, erikj, jwaters ! make/hotspot/lib/JvmOverrideFiles.gmk Changeset: 86cec4ea Branch: premain Author: Ivan Walulya Date: 2025-02-07 10:22:23 +0000 URL: https://git.openjdk.org/leyden/commit/86cec4ea2c2c56f03b23be44caade49b922cd3c6 8343782: G1: Use one G1CardSet instance for multiple old gen regions Reviewed-by: ayang, tschatzl ! src/hotspot/share/gc/g1/g1CardSet.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/g1/g1CollectedHeap.hpp ! src/hotspot/share/gc/g1/g1CollectedHeap.inline.hpp ! src/hotspot/share/gc/g1/g1CollectionSet.cpp ! src/hotspot/share/gc/g1/g1CollectionSet.hpp + src/hotspot/share/gc/g1/g1CollectionSet.inline.hpp ! src/hotspot/share/gc/g1/g1CollectionSetCandidates.cpp ! src/hotspot/share/gc/g1/g1CollectionSetCandidates.hpp ! src/hotspot/share/gc/g1/g1CollectionSetCandidates.inline.hpp ! src/hotspot/share/gc/g1/g1CollectionSetChooser.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.cpp ! src/hotspot/share/gc/g1/g1ConcurrentMark.hpp ! src/hotspot/share/gc/g1/g1FullCollector.cpp ! src/hotspot/share/gc/g1/g1FullGCResetMetadataTask.cpp ! src/hotspot/share/gc/g1/g1HeapRegion.cpp ! src/hotspot/share/gc/g1/g1HeapRegion.hpp ! src/hotspot/share/gc/g1/g1HeapRegion.inline.hpp ! src/hotspot/share/gc/g1/g1HeapRegionRemSet.cpp ! src/hotspot/share/gc/g1/g1HeapRegionRemSet.hpp ! src/hotspot/share/gc/g1/g1HeapRegionRemSet.inline.hpp ! src/hotspot/share/gc/g1/g1OopClosures.inline.hpp ! src/hotspot/share/gc/g1/g1ParScanThreadState.cpp ! src/hotspot/share/gc/g1/g1Policy.cpp ! src/hotspot/share/gc/g1/g1Policy.hpp ! src/hotspot/share/gc/g1/g1RemSet.cpp ! src/hotspot/share/gc/g1/g1RemSetSummary.cpp ! src/hotspot/share/gc/g1/g1RemSetTrackingPolicy.cpp ! src/hotspot/share/gc/g1/g1YoungCollector.cpp ! src/hotspot/share/gc/g1/g1YoungGCPostEvacuateTasks.cpp ! src/hotspot/share/gc/g1/g1_globals.hpp ! test/hotspot/jtreg/gc/g1/pinnedobjs/TestPinnedOldObjectsEvacuation.java Changeset: 7cd5cb29 Branch: premain Author: Mikhail Yankelevich Committer: Weijun Wang Date: 2025-02-07 15:40:17 +0000 URL: https://git.openjdk.org/leyden/commit/7cd5cb2916e8a62ec57c022a5fac19fb62b7c779 8349532: Refactor ./util/Pem/encoding.sh to run in java Reviewed-by: weijun ! test/jdk/sun/security/util/Pem/PemEncoding.java - test/jdk/sun/security/util/Pem/encoding.sh Changeset: fb847bb2 Branch: premain Author: Justin Lu Date: 2025-02-07 17:08:52 +0000 URL: https://git.openjdk.org/leyden/commit/fb847bb2afc9e9e164430078c5c403ec6583d50e 8349493: Replace sun.util.locale.ParseStatus usage with java.text.ParsePosition Reviewed-by: naoto ! src/java.base/share/classes/java/util/Locale.java ! src/java.base/share/classes/sun/util/locale/LanguageTag.java - src/java.base/share/classes/sun/util/locale/ParseStatus.java Changeset: 88a84835 Branch: premain Author: Bradford Wetmore Date: 2025-02-07 17:09:56 +0000 URL: https://git.openjdk.org/leyden/commit/88a84835a3a13f9adfcfa2ad034acff8fbc4fadc 8349121: SSLParameters.setApplicationProtocols() ALPN example could be clarified Reviewed-by: abarashev, jnimeh, dfuchs ! src/java.base/share/classes/javax/net/ssl/SSLParameters.java Changeset: b40f8eef Branch: premain Author: Andrew Haley Date: 2025-02-07 17:39:10 +0000 URL: https://git.openjdk.org/leyden/commit/b40f8eef98dac066816d4d548b2304276a76d5e0 8337251: C1: Improve Class.isInstance intrinsic Reviewed-by: vlivanov ! src/hotspot/cpu/aarch64/c1_LIRGenerator_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_Runtime1_aarch64.cpp ! src/hotspot/cpu/arm/c1_LIRGenerator_arm.cpp ! src/hotspot/cpu/ppc/c1_LIRGenerator_ppc.cpp ! src/hotspot/cpu/riscv/c1_LIRGenerator_riscv.cpp ! src/hotspot/cpu/s390/c1_LIRGenerator_s390.cpp ! src/hotspot/cpu/x86/c1_LIRGenerator_x86.cpp ! src/hotspot/cpu/x86/c1_Runtime1_x86.cpp ! src/hotspot/share/c1/c1_Canonicalizer.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp ! src/hotspot/share/c1/c1_Runtime1.cpp ! src/hotspot/share/runtime/stubDeclarations.hpp Changeset: bd9b24c0 Branch: premain Author: Liam Miller-Cushon Date: 2025-02-07 19:43:33 +0000 URL: https://git.openjdk.org/leyden/commit/bd9b24c0f8e0db88ae9714cdb355dcd56d802ab4 8349512: Duplicate PermittedSubclasses entries with doclint enabled Reviewed-by: vromero ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/Symbol.java ! test/langtools/tools/javac/sealed/SealedDiffConfigurationsTest.java Changeset: 7f6c6878 Branch: premain Author: Tom Rodriguez Date: 2025-02-07 19:58:37 +0000 URL: https://git.openjdk.org/leyden/commit/7f6c687815031d99931265007ff8867bf964cb25 8349374: [JVMCI] concurrent use of HotSpotSpeculationLog can crash Reviewed-by: kvn, dnsimon ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/HotSpotSpeculationLog.java Changeset: f0ea38b3 Branch: premain Author: Alexander Matveev Date: 2025-02-07 19:58:51 +0000 URL: https://git.openjdk.org/leyden/commit/f0ea38b3874ac627766768cbcd13f4be68c53797 8349509: [macos] Clean up macOS dead code in jpackage Reviewed-by: asemenyuk ! src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/MacAppImageBuilder.java ! src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/MacDmgBundler.java ! src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/MacPkgBundler.java Changeset: 7bf2c6ae Branch: premain Author: iklam Date: 2025-02-07 13:35:07 +0000 URL: https://git.openjdk.org/leyden/commit/7bf2c6ae009bdf13bf0717c13aab4a47aa9c8808 Merge branch 'master' into premain ! make/InitSupport.gmk ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp ! src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_Runtime1.cpp ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConfig.hpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/perfData.cpp ! src/hotspot/share/runtime/perfData.hpp ! src/hotspot/share/runtime/stubDeclarations.hpp ! src/hotspot/share/runtime/thread.cpp ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups ! make/InitSupport.gmk ! src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp ! src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp ! src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_Runtime1.cpp ! src/hotspot/share/cds/archiveHeapWriter.cpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConfig.hpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/perfData.cpp ! src/hotspot/share/runtime/perfData.hpp ! src/hotspot/share/runtime/stubDeclarations.hpp ! src/hotspot/share/runtime/thread.cpp ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups From shade at openjdk.org Mon Feb 10 09:49:53 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 09:49:53 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v2] In-Reply-To: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: > Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision: Moving the check around ------------- Changes: - all: https://git.openjdk.org/leyden/pull/33/files - new: https://git.openjdk.org/leyden/pull/33/files/6397c3a4..a75fb566 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=33&range=01 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=33&range=00-01 Stats: 9 lines in 1 file changed: 4 ins; 5 del; 0 mod Patch: https://git.openjdk.org/leyden/pull/33.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/33/head:pull/33 PR: https://git.openjdk.org/leyden/pull/33 From shade at openjdk.org Mon Feb 10 09:49:53 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 09:49:53 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v2] In-Reply-To: References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: On Thu, 6 Feb 2025 22:00:38 GMT, Vladimir Ivanov wrote: > But there are non-default modes where it still matters (`UseMetadataPointers == true`). FWIW, I believe `UseMetadataPointers` is `true` by default. Turning it off starts to fail `runtime/cds`. > I suggest to keep klass->is_hidden() check, but move it down to guard symbolic resolution case. Could you point me where exactly? I think there is a fair amount of symmetry against the hidden method checks here, so I moved the check to the same place: https://github.com/openjdk/leyden/blob/7bf2c6ae009bdf13bf0717c13aab4a47aa9c8808/src/hotspot/share/code/SCCache.cpp#L1780-L1783 ------------- PR Comment: https://git.openjdk.org/leyden/pull/33#issuecomment-2647461079 From shade at openjdk.org Mon Feb 10 10:04:28 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 10:04:28 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v3] In-Reply-To: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: > Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: - Merge branch 'premain' into JDK-8349539-allow-hidden - Moving the check around - Fix ------------- Changes: - all: https://git.openjdk.org/leyden/pull/33/files - new: https://git.openjdk.org/leyden/pull/33/files/a75fb566..46fd0b15 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=33&range=02 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=33&range=01-02 Stats: 57620 lines in 3321 files changed: 26973 ins; 16639 del; 14008 mod Patch: https://git.openjdk.org/leyden/pull/33.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/33/head:pull/33 PR: https://git.openjdk.org/leyden/pull/33 From shade at openjdk.org Mon Feb 10 10:34:11 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 10:34:11 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v2] In-Reply-To: References: Message-ID: > Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. > > There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. > > This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. > > Additional testing: > - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive > - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` > - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: - Merge branch 'premain' into JDK-8349457-enable-c2 - More fixes - Fix ------------- Changes: - all: https://git.openjdk.org/leyden/pull/32/files - new: https://git.openjdk.org/leyden/pull/32/files/0dcee32d..1ee3b847 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=32&range=01 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=32&range=00-01 Stats: 57620 lines in 3321 files changed: 26973 ins; 16639 del; 14008 mod Patch: https://git.openjdk.org/leyden/pull/32.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/32/head:pull/32 PR: https://git.openjdk.org/leyden/pull/32 From shade at openjdk.org Mon Feb 10 11:00:13 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 11:00:13 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v3] In-Reply-To: References: Message-ID: <0hfzY4Ui_xTAIY8jrUfGGbXGqEpRGZnDsDo8sqKEo0E=.0537e581-cffe-47ad-9e22-12bfcb5ccea3@github.com> > Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. > > There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. > > This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. > > Additional testing: > - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive > - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` > - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision: Revert Precompiler additions ------------- Changes: - all: https://git.openjdk.org/leyden/pull/32/files - new: https://git.openjdk.org/leyden/pull/32/files/1ee3b847..ee4d9d11 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=32&range=02 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=32&range=01-02 Stats: 23 lines in 1 file changed: 4 ins; 14 del; 5 mod Patch: https://git.openjdk.org/leyden/pull/32.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/32/head:pull/32 PR: https://git.openjdk.org/leyden/pull/32 From shade at openjdk.org Mon Feb 10 11:00:14 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 11:00:14 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v3] In-Reply-To: <69HkbPvMlOXDNmcs5DB3XFeiYMymo5J4OmzhawpMGHo=.9105ca7b-d3c1-474f-a5db-604a224c58b3@github.com> References: <69HkbPvMlOXDNmcs5DB3XFeiYMymo5J4OmzhawpMGHo=.9105ca7b-d3c1-474f-a5db-604a224c58b3@github.com> Message-ID: On Thu, 6 Feb 2025 21:45:20 GMT, Vladimir Ivanov wrote: >> I tested different combinations of `{+|-}TieredCompilation` with training and production runs, and it works well. I believe the normal mechanisms make it right. I.e. there is no guarantee that lower-tiers code would always be present with `+TieredCompilation`. So, no C1 code? Fine, nothing loaded. >> >> The loaders are also aware of the compilers that are present. So, tier{2,3} code in archive, but C1 is disabled? We are not loading it then. >> >> From performance angle, there seem to be a slight performance edge in training with C2 only, and then running with C1+C2: no penalty on loading lots of C1 compiled code, and quicker transition from intepreter to "real" C1 in only a few places where it is needed! Compiler dynamics is weird. This PR gains us access to these kind of studies :) > > As I mentioned during the meeting, it looks weird to me to see `if (TieredCompilation)` checks in Precompiler code which is executed only during assembly phase. As a data point, regular CDS archive is used to be generated in interpreter-only mode (to make the process reproducible). > > Instead of supporting arbitrary JVM configurations during assembly phase, I'd prefer to see offending JVM parameters being overridden/dropped. Right, I thought it matters for Precompiler not to attempt pre-compiling C1 classes with `-XX:-TieredCompilation`, but it does not. I see `runtime/cds` passing with/without TieredCompilation without these hunks, and CDS archive sizes are similar, and performance is still the same. So I have reverted Precompiler hunks as unnecessary. Take a look again? ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/32#discussion_r1948837477 From shade at openjdk.org Mon Feb 10 12:19:01 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 12:19:01 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file Message-ID: It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. Additional testing: - [x] Linux x86_64 server fastdebug, `runtime/cds` ------------- Commit messages: - Fix Changes: https://git.openjdk.org/leyden/pull/34/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=34&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8349713 Stats: 33 lines in 2 files changed: 21 ins; 2 del; 10 mod Patch: https://git.openjdk.org/leyden/pull/34.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/34/head:pull/34 PR: https://git.openjdk.org/leyden/pull/34 From shade at openjdk.org Mon Feb 10 12:19:01 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 12:19:01 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 12:14:11 GMT, Aleksey Shipilev wrote: > It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. > > We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. > > I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. > > Additional testing: > - [x] Linux x86_64 server fastdebug, `runtime/cds` It demonstrably improves performance on Linux, kicking out the 30ms out of critical startup path. # Without mmap (legacy code) Benchmark 1: build/linux-x86_64-server-release/images/jdk/bin/java -Xms64m -Xmx1g -XX:CacheDataStore=JavacBenchApp.cds -XX:+UseParallelGC -cp JavacBenchApp.jar -XX:-MmapCachedCode JavacBenchApp 50 1 Time (mean ? ?): 408.0 ms ? 2.5 ms [User: 1231.7 ms, System: 196.2 ms] Range (min ? max): 404.6 ms ? 412.8 ms 10 runs # With mmap Benchmark 1: build/linux-x86_64-server-release/images/jdk/bin/java -Xms64m -Xmx1g -XX:CacheDataStore=JavacBenchApp.cds -XX:+UseParallelGC -cp JavacBenchApp.jar JavacBenchApp 50 1 Time (mean ? ?): 382.1 ms ? 2.6 ms [User: 1229.9 ms, System: 181.6 ms] Range (min ? max): 378.9 ms ? 388.0 ms 10 runs ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2647815183 From shade at openjdk.org Mon Feb 10 12:32:03 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 12:32:03 GMT Subject: RFR: 8349717: [leyden] compiler/inlining/LateInlinePrinting.java is failing Message-ID: There are lots of mainline reports about this test, see links. We see a failure in current GHA for Leyden. For Leyden, there are additional specifics: we print advanced compile task information in compile log, so we get indenting/format mismatches. Leyden dumps this: 57 W0.0 Q0.0 C0.7 3 b compiler.inlining.LateInlinePrinting$TestLateInlining::test2 (7 bytes) @ 0 compiler.inlining.LateInlinePrinting$TestLateInlining::test3 (1 bytes) inline (hot) late inline succeeded @ 3 compiler.inlining.LateInlinePrinting$TestLateInlining::testFailInline (1 bytes) failed to inline: disallowed by CompileCommand @ 6 compiler.inlining.LateInlinePrinting$TestLateInlining::testFailInline (1 bytes) failed to inline: disallowed by CompileCommand @ 9 compiler.inlining.LateInlinePrinting$TestLateInlining::test2 (7 bytes) inline (hot) late inline succeeded @ 0 compiler.inlining.LateInlinePrinting$TestLateInlining::inlined1 (1 bytes) inline (hot) late inline succeeded @ 3 compiler.inlining.LateInlinePrinting$TestLateInlining::inlined2 (1 bytes) inline (hot) late inline succeeded 58 W0.0 Q0.0 C1.1 4 b compiler.inlining.LateInlinePrinting$TestLateInlining::test1 (13 bytes) So, this bug fixes the test for Leyden specifically, while mainline is figuring out the rest. ------------- Commit messages: - Fix Changes: https://git.openjdk.org/leyden/pull/35/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=35&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8349717 Stats: 14 lines in 1 file changed: 0 ins; 3 del; 11 mod Patch: https://git.openjdk.org/leyden/pull/35.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/35/head:pull/35 PR: https://git.openjdk.org/leyden/pull/35 From duke at openjdk.org Mon Feb 10 13:04:42 2025 From: duke at openjdk.org (Francesco Nigro) Date: Mon, 10 Feb 2025 13:04:42 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 12:15:01 GMT, Aleksey Shipilev wrote: >> It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. >> >> We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. >> >> I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. >> >> Additional testing: >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > It demonstrably improves performance on Linux, kicking out the 30ms out of critical startup path. > > > # Without mmap (legacy code) > Benchmark 1: build/linux-x86_64-server-release/images/jdk/bin/java -Xms64m -Xmx1g -XX:CacheDataStore=JavacBenchApp.cds -XX:+UseParallelGC -cp JavacBenchApp.jar -XX:-MmapCachedCode JavacBenchApp 50 1 > Time (mean ? ?): 408.0 ms ? 2.5 ms [User: 1231.7 ms, System: 196.2 ms] > Range (min ? max): 404.6 ms ? 412.8 ms 10 runs > > # With mmap > Benchmark 1: build/linux-x86_64-server-release/images/jdk/bin/java -Xms64m -Xmx1g -XX:CacheDataStore=JavacBenchApp.cds -XX:+UseParallelGC -cp JavacBenchApp.jar JavacBenchApp 50 1 > Time (mean ? ?): 382.1 ms ? 2.6 ms [User: 1229.9 ms, System: 181.6 ms] > Range (min ? max): 378.9 ms ? 388.0 ms 10 runs @shipilev Does the numbers still holds with sync; echo 3 > /proc/sys/vm/drop_caches before the benchmark (single shot) run? With big servers, unless there's some expected sharing (i.e. multiple processes using the same archive) to further boost it, I would expect direct I/O to benefit loading the archive by saving the extra copy (in the OS page cache) required to use the data read (OS page cache + extra copy). The other concern re mmap is due to munmap cost which, on kernel side, relies (IIRC) to some v page single (!) lock to guard it - which usually slowdown processes termination ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2647922569 From shade at openjdk.org Mon Feb 10 14:42:09 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 14:42:09 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete Message-ID: During one of the meetings, @iwanowww suggested there is a diagnostic option to block the execution until all preloaded code is finished loading. For the Java application, it would then look as if the entirety of preload code was loaded "instantaneously", which helps to estimate the performance floor for a given workload. I have found no such option in current Leyden prototype, though, so this RFE should implement one. This is indeed helpful, especially combined with #32, which allows to run with only C2. ------------- Commit messages: - Fix Changes: https://git.openjdk.org/leyden/pull/36/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=36&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8349722 Stats: 7 lines in 2 files changed: 6 ins; 0 del; 1 mod Patch: https://git.openjdk.org/leyden/pull/36.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/36/head:pull/36 PR: https://git.openjdk.org/leyden/pull/36 From shade at openjdk.org Mon Feb 10 14:47:21 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 14:47:21 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 13:01:27 GMT, Francesco Nigro wrote: > Does the numbers still holds with sync; echo 3 > /proc/sys/vm/drop_caches Yes, they do, and there is a good reason why: without caches, the hit on the critical startup path is even worse, even with a modern SSD. And AFAIU, file-backed mmap does play well with I/O caches too. Observe: # Drop caches, read Time (mean ? ?): 521.0 ms ? 6.1 ms [User: 1297.3 ms, System: 259.0 ms] Range (min ? max): 514.6 ms ? 532.2 ms 10 runs # Drop caches, mmap Time (mean ? ?): 479.9 ms ? 2.6 ms [User: 1148.7 ms, System: 223.4 ms] ; <--- ~40ms faster Range (min ? max): 476.4 ms ? 484.3 ms 10 runs # Cached, read Time (mean ? ?): 413.0 ms ? 3.5 ms [User: 1267.0 ms, System: 207.9 ms] Range (min ? max): 408.6 ms ? 417.7 ms 10 runs # Cached, mmap Time (mean ? ?): 386.0 ms ? 4.7 ms [User: 1258.5 ms, System: 183.3 ms] ; <--- ~30ms faster Range (min ? max): 378.7 ms ? 393.7 ms 10 runs > The other concern re mmap is due to munmap cost which, on kernel side, relies (IIRC) to some v page single (!) lock to guard it - which usually slowdown processes termination `hyperfine` tests of mine include that cost, as they are end-to-end invocation tests. (I remember this from 1BRC times.) ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2648211800 From kvn at openjdk.org Mon Feb 10 15:19:43 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Mon, 10 Feb 2025 15:19:43 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v3] In-Reply-To: References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: <-ZVOZLyxJB42W9MkwNfwNmC8CpESuWQpS467dMKtEzA=.495b8187-fae9-4de9-ac17-b5fb5f8c6d23@github.com> On Mon, 10 Feb 2025 10:04:28 GMT, Aleksey Shipilev wrote: >> Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349539-allow-hidden > - Moving the check around > - Fix Looks good to me. ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/33#pullrequestreview-2606180079 From kvn at openjdk.org Mon Feb 10 15:19:43 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Mon, 10 Feb 2025 15:19:43 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v3] In-Reply-To: References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: On Mon, 10 Feb 2025 09:47:00 GMT, Aleksey Shipilev wrote: >>But there are non-default modes where it still matters (UseMetadataPointers == true). >FWIW, I believe UseMetadataPointers is true by default. Turning it off starts to fail runtime/cds. I started implementation of Code caching using only symbolic resolution in relocations. When it is integrated with other changes I left such capability guarded by this flag. We can retire this flag when the only way to use code caching is CDS archive which will contain the code instead of separate file. I am currently looking on this. ------------- PR Comment: https://git.openjdk.org/leyden/pull/33#issuecomment-2648330401 From shade at openjdk.org Mon Feb 10 15:29:22 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 15:29:22 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 14:36:52 GMT, Aleksey Shipilev wrote: > During one of the meetings, @iwanowww suggested there is a diagnostic option to block the execution until all preloaded code is finished loading. For the Java application, it would then look as if the entirety of preload code was loaded "instantaneously", which helps to estimate the performance floor for a given workload. > > I have found no such option in current Leyden prototype, though, so this RFE should implement one. > > This is indeed helpful, especially combined with #32, which allows to run with only C2. I'll wait for #35 to get integrated before I kick off GHA re-run. ------------- PR Comment: https://git.openjdk.org/leyden/pull/36#issuecomment-2648389513 From kvn at openjdk.org Mon Feb 10 15:30:24 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Mon, 10 Feb 2025 15:30:24 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 12:14:11 GMT, Aleksey Shipilev wrote: > It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. > > We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. > > I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. > > Additional testing: > - [x] Linux x86_64 server fastdebug, `runtime/cds` Good. Until, as we discussed, cached code (and its data) will be part of CDS archive file. How CDS handles `mmap` on windows? ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/34#pullrequestreview-2606244576 From shade at openjdk.org Mon Feb 10 15:30:24 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 15:30:24 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 12:14:11 GMT, Aleksey Shipilev wrote: > It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. > > We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. > > I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. > > Additional testing: > - [x] Linux x86_64 server fastdebug, `runtime/cds` Current GHA failures should be fixed by #35. ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2648393197 From shade at openjdk.org Mon Feb 10 15:30:31 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 15:30:31 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v3] In-Reply-To: References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: On Mon, 10 Feb 2025 10:04:28 GMT, Aleksey Shipilev wrote: >> Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349539-allow-hidden > - Moving the check around > - Fix Current GHA failures should be fixed by #35. ------------- PR Comment: https://git.openjdk.org/leyden/pull/33#issuecomment-2648395659 From shade at openjdk.org Mon Feb 10 15:30:32 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 15:30:32 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v3] In-Reply-To: <0hfzY4Ui_xTAIY8jrUfGGbXGqEpRGZnDsDo8sqKEo0E=.0537e581-cffe-47ad-9e22-12bfcb5ccea3@github.com> References: <0hfzY4Ui_xTAIY8jrUfGGbXGqEpRGZnDsDo8sqKEo0E=.0537e581-cffe-47ad-9e22-12bfcb5ccea3@github.com> Message-ID: On Mon, 10 Feb 2025 11:00:13 GMT, Aleksey Shipilev wrote: >> Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. >> >> There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. >> >> This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. >> >> Additional testing: >> - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive >> - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` >> - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) > > Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision: > > Revert Precompiler additions Current GHA failures should be fixed by #35. ------------- PR Comment: https://git.openjdk.org/leyden/pull/32#issuecomment-2648394704 From kvn at openjdk.org Mon Feb 10 15:36:31 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Mon, 10 Feb 2025 15:36:31 GMT Subject: RFR: 8349717: [leyden] compiler/inlining/LateInlinePrinting.java is failing In-Reply-To: References: Message-ID: <4TXCTggQw0txaiRw3jlCbENn8TS-2z4Qc7IzRxCxrYw=.72af2a07-8857-468e-b9a4-edf6e57f9f56@github.com> On Mon, 10 Feb 2025 12:26:49 GMT, Aleksey Shipilev wrote: > There are lots of mainline reports about this test, see links. We see a failure in current GHA for Leyden. For Leyden, there are additional specifics: we print advanced compile task information in compile log, so we get indenting/format mismatches. > > Leyden dumps this: > > > 57 W0.0 Q0.0 C0.7 3 b compiler.inlining.LateInlinePrinting$TestLateInlining::test2 (7 bytes) > @ 0 compiler.inlining.LateInlinePrinting$TestLateInlining::test3 (1 bytes) inline (hot) late inline succeeded > @ 3 compiler.inlining.LateInlinePrinting$TestLateInlining::testFailInline (1 bytes) failed to inline: disallowed by CompileCommand > @ 6 compiler.inlining.LateInlinePrinting$TestLateInlining::testFailInline (1 bytes) failed to inline: disallowed by CompileCommand > @ 9 compiler.inlining.LateInlinePrinting$TestLateInlining::test2 (7 bytes) inline (hot) late inline succeeded > @ 0 compiler.inlining.LateInlinePrinting$TestLateInlining::inlined1 (1 bytes) inline (hot) late inline succeeded > @ 3 compiler.inlining.LateInlinePrinting$TestLateInlining::inlined2 (1 bytes) inline (hot) late inline succeeded > 58 W0.0 Q0.0 C1.1 4 b compiler.inlining.LateInlinePrinting$TestLateInlining::test1 (13 bytes) > > > So, this bug fixes the test for Leyden specifically, while mainline is figuring out the rest. Good. I did not know about `"""` support by C++. ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/35#pullrequestreview-2606264941 From shade at openjdk.org Mon Feb 10 15:38:30 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 15:38:30 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 15:28:06 GMT, Vladimir Kozlov wrote: > Good. Until, as we discussed, cached code (and its data) will be part of CDS archive file. Yes, that would make this whole thing no-op. CDS mmap-s the archive already. > How CDS handles `mmap` on windows? Windows can still memory-map the file through its Windows APIs. But I _vaguely_ recollect some corner cases that @iklam fights every so often. Something with remapping or so? See `MetaspaceShared::use_windows_memory_mapping`, for example. I don't think it is wise to spend time dealing with those corner cases in current Leyden prototype, let it be part of whole CDS archive first. ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2648422501 From shade at openjdk.org Mon Feb 10 15:40:26 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 15:40:26 GMT Subject: RFR: 8349717: [leyden] compiler/inlining/LateInlinePrinting.java is failing In-Reply-To: <4TXCTggQw0txaiRw3jlCbENn8TS-2z4Qc7IzRxCxrYw=.72af2a07-8857-468e-b9a4-edf6e57f9f56@github.com> References: <4TXCTggQw0txaiRw3jlCbENn8TS-2z4Qc7IzRxCxrYw=.72af2a07-8857-468e-b9a4-edf6e57f9f56@github.com> Message-ID: On Mon, 10 Feb 2025 15:33:21 GMT, Vladimir Kozlov wrote: > Good. I did not know about `"""` support by C++. This is multi-line String (text blocks) from https://openjdk.org/jeps/378 :) ------------- PR Comment: https://git.openjdk.org/leyden/pull/35#issuecomment-2648426522 From duke at openjdk.org Mon Feb 10 15:40:26 2025 From: duke at openjdk.org (duke) Date: Mon, 10 Feb 2025 15:40:26 GMT Subject: RFR: 8349717: [leyden] compiler/inlining/LateInlinePrinting.java is failing In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 12:26:49 GMT, Aleksey Shipilev wrote: > There are lots of mainline reports about this test, see links. We see a failure in current GHA for Leyden. For Leyden, there are additional specifics: we print advanced compile task information in compile log, so we get indenting/format mismatches. > > Leyden dumps this: > > > 57 W0.0 Q0.0 C0.7 3 b compiler.inlining.LateInlinePrinting$TestLateInlining::test2 (7 bytes) > @ 0 compiler.inlining.LateInlinePrinting$TestLateInlining::test3 (1 bytes) inline (hot) late inline succeeded > @ 3 compiler.inlining.LateInlinePrinting$TestLateInlining::testFailInline (1 bytes) failed to inline: disallowed by CompileCommand > @ 6 compiler.inlining.LateInlinePrinting$TestLateInlining::testFailInline (1 bytes) failed to inline: disallowed by CompileCommand > @ 9 compiler.inlining.LateInlinePrinting$TestLateInlining::test2 (7 bytes) inline (hot) late inline succeeded > @ 0 compiler.inlining.LateInlinePrinting$TestLateInlining::inlined1 (1 bytes) inline (hot) late inline succeeded > @ 3 compiler.inlining.LateInlinePrinting$TestLateInlining::inlined2 (1 bytes) inline (hot) late inline succeeded > 58 W0.0 Q0.0 C1.1 4 b compiler.inlining.LateInlinePrinting$TestLateInlining::test1 (13 bytes) > > > So, this bug fixes the test for Leyden specifically, while mainline is figuring out the rest. @shipilev Your change (at version 82628e965f4cad1e8be2ac32af8b1fc057905234) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/35#issuecomment-2648428757 From asmehra at openjdk.org Mon Feb 10 15:41:37 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Mon, 10 Feb 2025 15:41:37 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v3] In-Reply-To: References: <69HkbPvMlOXDNmcs5DB3XFeiYMymo5J4OmzhawpMGHo=.9105ca7b-d3c1-474f-a5db-604a224c58b3@github.com> Message-ID: On Mon, 10 Feb 2025 10:55:57 GMT, Aleksey Shipilev wrote: > CDS archive sizes are similar, I think this would impact the code archive, not the CDS archive. If it does reduce the on-disk size of code archive, then why not do this? It's pretty straightforward; not a complicated change IMO. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/32#discussion_r1949355698 From shade at openjdk.org Mon Feb 10 15:49:27 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 15:49:27 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v3] In-Reply-To: References: <69HkbPvMlOXDNmcs5DB3XFeiYMymo5J4OmzhawpMGHo=.9105ca7b-d3c1-474f-a5db-604a224c58b3@github.com> Message-ID: On Mon, 10 Feb 2025 15:38:43 GMT, Ashutosh Mehra wrote: >> Right, I thought it matters for Precompiler not to attempt pre-compiling C1 classes with `-XX:-TieredCompilation`, but it does not. I see `runtime/cds` passing with/without TieredCompilation without these hunks, and CDS archive sizes are similar, and performance is still the same. So I have reverted Precompiler hunks as unnecessary. >> >> Take a look again? > >> CDS archive sizes are similar, > > I think this would impact the code archive, not the CDS archive. > If it does reduce the on-disk size of code archive, then why not do this? It's pretty straightforward; not a complicated change IMO. I looked at both `.cds` and `.cds.code` files, and they are of similar size with `-XX:-TieredCompilation` whether we have this runtime check or not. I suspect this is because with `-XX:-TieredCompilation` we _do not have_ C1 compilations at all, so there is nothing to precompile. This makes the code change redundant. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/32#discussion_r1949370691 From kvn at openjdk.org Mon Feb 10 16:05:23 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Mon, 10 Feb 2025 16:05:23 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 14:36:52 GMT, Aleksey Shipilev wrote: > During one of the meetings, @iwanowww suggested there is a diagnostic option to block the execution until all preloaded code is finished loading. For the Java application, it would then look as if the entirety of preload code was loaded "instantaneously", which helps to estimate the performance floor for a given workload. > > I have found no such option in current Leyden prototype, though, so this RFE should implement one. > > This is indeed helpful, especially combined with #32, which allows to run with only C2. src/hotspot/share/compiler/compileBroker.cpp line 1763: > 1761: bool is_blocking = ReplayCompiles || > 1762: !directive->BackgroundCompilationOption || > 1763: (PreloadBlocking && (compile_reason == CompileTask::Reason_Preload)) || I was thinking may be set `BackgroundCompilation` flag to `false` temporary in `SCCache::preload_startup_code()` which loads all startup code. We do similar thing when dumping CS archive: https://github.com/openjdk/leyden/blob/premain/src/hotspot/share/cds/cdsConfig.cpp#L547 But I am not sure how such temporary setting affects `directive->BackgroundCompilationOption`. src/hotspot/share/compiler/compiler_globals.hpp line 494: > 492: "Exit after precompilation step is over") \ > 493: \ > 494: product(bool, PreloadBlocking, false, \ Should be diagnostic flag ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/36#discussion_r1949401399 PR Review Comment: https://git.openjdk.org/leyden/pull/36#discussion_r1949366798 From kvn at openjdk.org Mon Feb 10 16:07:42 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Mon, 10 Feb 2025 16:07:42 GMT Subject: git: openjdk/leyden: premain: 8349717: [leyden] compiler/inlining/LateInlinePrinting.java is failing Message-ID: <6ce39bf6-6cea-40c3-95b7-4d325d60a574@openjdk.org> Changeset: ccc8d7a1 Branch: premain Author: Aleksey Shipilev Committer: Vladimir Kozlov Date: 2025-02-10 16:06:07 +0000 URL: https://git.openjdk.org/leyden/commit/ccc8d7a16736f8760838bb621170fd7051751020 8349717: [leyden] compiler/inlining/LateInlinePrinting.java is failing Reviewed-by: kvn ! test/hotspot/jtreg/compiler/inlining/LateInlinePrinting.java From shade at openjdk.org Mon Feb 10 16:08:22 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 16:08:22 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete In-Reply-To: References: Message-ID: <9n7SHbCang4wWnBiUHFPsQwMkcLqtmVJVfFFI5wwJwA=.33b880eb-f84d-466e-93bf-7a64044f9d9f@github.com> On Mon, 10 Feb 2025 16:02:12 GMT, Vladimir Kozlov wrote: >> During one of the meetings, @iwanowww suggested there is a diagnostic option to block the execution until all preloaded code is finished loading. For the Java application, it would then look as if the entirety of preload code was loaded "instantaneously", which helps to estimate the performance floor for a given workload. >> >> I have found no such option in current Leyden prototype, though, so this RFE should implement one. >> >> This is indeed helpful, especially combined with #32, which allows to run with only C2. > > src/hotspot/share/compiler/compileBroker.cpp line 1763: > >> 1761: bool is_blocking = ReplayCompiles || >> 1762: !directive->BackgroundCompilationOption || >> 1763: (PreloadBlocking && (compile_reason == CompileTask::Reason_Preload)) || > > I was thinking may be set `BackgroundCompilation` flag to `false` temporary in `SCCache::preload_startup_code()` which loads all startup code. We do similar thing when dumping CS archive: > https://github.com/openjdk/leyden/blob/premain/src/hotspot/share/cds/cdsConfig.cpp#L547 > > But I am not sure how such temporary setting affects `directive->BackgroundCompilationOption`. Oh. Let me try. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/36#discussion_r1949411811 From kvn at openjdk.org Mon Feb 10 16:09:27 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Mon, 10 Feb 2025 16:09:27 GMT Subject: RFR: 8349717: [leyden] compiler/inlining/LateInlinePrinting.java is failing In-Reply-To: References: Message-ID: <19Luav3_nXTgYvikaabhEgC3JVISFWiMJaI3W3Ed43E=.e7c4cb34-d024-4f8b-8125-43be9904496a@github.com> On Mon, 10 Feb 2025 12:26:49 GMT, Aleksey Shipilev wrote: > There are lots of mainline reports about this test, see links. We see a failure in current GHA for Leyden. For Leyden, there are additional specifics: we print advanced compile task information in compile log, so we get indenting/format mismatches. > > Leyden dumps this: > > > 57 W0.0 Q0.0 C0.7 3 b compiler.inlining.LateInlinePrinting$TestLateInlining::test2 (7 bytes) > @ 0 compiler.inlining.LateInlinePrinting$TestLateInlining::test3 (1 bytes) inline (hot) late inline succeeded > @ 3 compiler.inlining.LateInlinePrinting$TestLateInlining::testFailInline (1 bytes) failed to inline: disallowed by CompileCommand > @ 6 compiler.inlining.LateInlinePrinting$TestLateInlining::testFailInline (1 bytes) failed to inline: disallowed by CompileCommand > @ 9 compiler.inlining.LateInlinePrinting$TestLateInlining::test2 (7 bytes) inline (hot) late inline succeeded > @ 0 compiler.inlining.LateInlinePrinting$TestLateInlining::inlined1 (1 bytes) inline (hot) late inline succeeded > @ 3 compiler.inlining.LateInlinePrinting$TestLateInlining::inlined2 (1 bytes) inline (hot) late inline succeeded > 58 W0.0 Q0.0 C1.1 4 b compiler.inlining.LateInlinePrinting$TestLateInlining::test1 (13 bytes) > > > So, this bug fixes the test for Leyden specifically, while mainline is figuring out the rest. We really need to make you committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/35#issuecomment-2648513413 From shade at openjdk.org Mon Feb 10 16:09:27 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 16:09:27 GMT Subject: Integrated: 8349717: [leyden] compiler/inlining/LateInlinePrinting.java is failing In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 12:26:49 GMT, Aleksey Shipilev wrote: > There are lots of mainline reports about this test, see links. We see a failure in current GHA for Leyden. For Leyden, there are additional specifics: we print advanced compile task information in compile log, so we get indenting/format mismatches. > > Leyden dumps this: > > > 57 W0.0 Q0.0 C0.7 3 b compiler.inlining.LateInlinePrinting$TestLateInlining::test2 (7 bytes) > @ 0 compiler.inlining.LateInlinePrinting$TestLateInlining::test3 (1 bytes) inline (hot) late inline succeeded > @ 3 compiler.inlining.LateInlinePrinting$TestLateInlining::testFailInline (1 bytes) failed to inline: disallowed by CompileCommand > @ 6 compiler.inlining.LateInlinePrinting$TestLateInlining::testFailInline (1 bytes) failed to inline: disallowed by CompileCommand > @ 9 compiler.inlining.LateInlinePrinting$TestLateInlining::test2 (7 bytes) inline (hot) late inline succeeded > @ 0 compiler.inlining.LateInlinePrinting$TestLateInlining::inlined1 (1 bytes) inline (hot) late inline succeeded > @ 3 compiler.inlining.LateInlinePrinting$TestLateInlining::inlined2 (1 bytes) inline (hot) late inline succeeded > 58 W0.0 Q0.0 C1.1 4 b compiler.inlining.LateInlinePrinting$TestLateInlining::test1 (13 bytes) > > > So, this bug fixes the test for Leyden specifically, while mainline is figuring out the rest. This pull request has now been integrated. Changeset: ccc8d7a1 Author: Aleksey Shipilev Committer: Vladimir Kozlov URL: https://git.openjdk.org/leyden/commit/ccc8d7a16736f8760838bb621170fd7051751020 Stats: 14 lines in 1 file changed: 0 ins; 3 del; 11 mod 8349717: [leyden] compiler/inlining/LateInlinePrinting.java is failing Reviewed-by: kvn ------------- PR: https://git.openjdk.org/leyden/pull/35 From vladimir.kozlov at oracle.com Mon Feb 10 16:25:57 2025 From: vladimir.kozlov at oracle.com (Vladimir Kozlov) Date: Mon, 10 Feb 2025 08:25:57 -0800 Subject: CFV: New leyden Committer: Aleksey Shipilev Message-ID: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> I hereby nominate Aleksey Shipilev [1] to Leyden Committer. Aleksey is part of OpenJDK group which is working on VM changes for Leyden project (in premain branch). He contributed number of significant changes to the project. He enable GHA testing for our PRs in GitHub and number of changes to improve startup. Votes are due by 24 February 2025. Only current Leyden Committers [2] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [3]. Thanks, Vladimir Kozlov [1] https://openjdk.org/census#shade [2] https://openjdk.org/census#leyden [3] https://openjdk.org/projects/#committer-vote From vladimir.kozlov at oracle.com Mon Feb 10 16:28:58 2025 From: vladimir.kozlov at oracle.com (Vladimir Kozlov) Date: Mon, 10 Feb 2025 08:28:58 -0800 Subject: CFV: New leyden Committer: Aleksey Shipilev In-Reply-To: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> References: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> Message-ID: Vote: yes Thanks, Vladimir K On 2/10/25 8:25 AM, Vladimir Kozlov wrote: > I hereby nominate Aleksey Shipilev [1] to Leyden Committer. > > Aleksey is part of OpenJDK group which is working on VM changes for Leyden project (in premain branch). > He contributed number of significant changes to the project. He enable GHA testing for our PRs in GitHub and number of > changes to improve startup. > > Votes are due by 24 February 2025. > > Only current Leyden Committers [2] are eligible to vote > on this nomination.? Votes must be cast in the open by replying > to this mailing list. > > For Lazy Consensus voting instructions, see [3]. > > Thanks, > Vladimir Kozlov > > [1] https://openjdk.org/census#shade > [2] https://openjdk.org/census#leyden > [3] https://openjdk.org/projects/#committer-vote > > From maurizio.cimadamore at oracle.com Mon Feb 10 16:30:48 2025 From: maurizio.cimadamore at oracle.com (Maurizio Cimadamore) Date: Mon, 10 Feb 2025 16:30:48 +0000 Subject: CFV: New leyden Committer: Aleksey Shipilev In-Reply-To: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> References: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> Message-ID: <5223c809-28c2-415e-9ee7-fb8f0cdfb801@oracle.com> Vote: yes Maurizio On 10/02/2025 16:25, Vladimir Kozlov wrote: > I hereby nominate Aleksey Shipilev [1] to Leyden Committer. > > Aleksey is part of OpenJDK group which is working on VM changes for > Leyden project (in premain branch). > He contributed number of significant changes to the project. He enable > GHA testing for our PRs in GitHub and number of changes to improve > startup. > > Votes are due by 24 February 2025. > > Only current Leyden Committers [2] are eligible to vote > on this nomination.? Votes must be cast in the open by replying > to this mailing list. > > For Lazy Consensus voting instructions, see [3]. > > Thanks, > Vladimir Kozlov > > [1] https://openjdk.org/census#shade > [2] https://openjdk.org/census#leyden > [3] https://openjdk.org/projects/#committer-vote > > From shade at openjdk.org Mon Feb 10 16:34:02 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 16:34:02 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v4] In-Reply-To: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: > Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains four additional commits since the last revision: - Merge branch 'premain' into JDK-8349539-allow-hidden - Merge branch 'premain' into JDK-8349539-allow-hidden - Moving the check around - Fix ------------- Changes: - all: https://git.openjdk.org/leyden/pull/33/files - new: https://git.openjdk.org/leyden/pull/33/files/46fd0b15..b4ec97ac Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=33&range=03 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=33&range=02-03 Stats: 14 lines in 1 file changed: 0 ins; 3 del; 11 mod Patch: https://git.openjdk.org/leyden/pull/33.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/33/head:pull/33 PR: https://git.openjdk.org/leyden/pull/33 From shade at openjdk.org Mon Feb 10 16:36:04 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 16:36:04 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v2] In-Reply-To: References: Message-ID: > It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. > > We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. > > I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. > > Additional testing: > - [x] Linux x86_64 server fastdebug, `runtime/cds` Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains two additional commits since the last revision: - Merge branch 'premain' into JDK-8349713-mmap-sccache - Fix ------------- Changes: - all: https://git.openjdk.org/leyden/pull/34/files - new: https://git.openjdk.org/leyden/pull/34/files/41d018db..ce07d999 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=34&range=01 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=34&range=00-01 Stats: 14 lines in 1 file changed: 0 ins; 3 del; 11 mod Patch: https://git.openjdk.org/leyden/pull/34.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/34/head:pull/34 PR: https://git.openjdk.org/leyden/pull/34 From shipilev at amazon.de Mon Feb 10 16:37:20 2025 From: shipilev at amazon.de (Aleksey Shipilev) Date: Mon, 10 Feb 2025 17:37:20 +0100 Subject: Leyden PRs and repo-leyden bugs Message-ID: (cc'ing leyden-dev@) Hi Skara devs! I was wondering what kind of config Leyden repo is missing, so that PRs are not closed automatically? See for example this bug: https://bugs.openjdk.org/browse/JDK-8348960 ...and here is the integrated PR: https://github.com/openjdk/leyden/pull/30 I suspect the problem might be that PRs are targeting the "premain", not "master" branch? Is there a way to tell bots to treat "premain" branch as repo-leyden, maybe? Here is jcheck for premain branch: https://github.com/openjdk/leyden/blob/premain/.jcheck/conf -- Thanks, -Aleksey From shade at openjdk.org Mon Feb 10 16:38:09 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 16:38:09 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v4] In-Reply-To: References: Message-ID: > Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. > > There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. > > This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. > > Additional testing: > - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive > - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` > - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains five additional commits since the last revision: - Merge branch 'premain' into JDK-8349457-enable-c2 - Revert Precompiler additions - Merge branch 'premain' into JDK-8349457-enable-c2 - More fixes - Fix ------------- Changes: - all: https://git.openjdk.org/leyden/pull/32/files - new: https://git.openjdk.org/leyden/pull/32/files/ee4d9d11..6cdde259 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=32&range=03 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=32&range=02-03 Stats: 14 lines in 1 file changed: 0 ins; 3 del; 11 mod Patch: https://git.openjdk.org/leyden/pull/32.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/32/head:pull/32 PR: https://git.openjdk.org/leyden/pull/32 From asmehra at openjdk.org Mon Feb 10 16:45:23 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Mon, 10 Feb 2025 16:45:23 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v4] In-Reply-To: References: <69HkbPvMlOXDNmcs5DB3XFeiYMymo5J4OmzhawpMGHo=.9105ca7b-d3c1-474f-a5db-604a224c58b3@github.com> Message-ID: On Mon, 10 Feb 2025 15:46:51 GMT, Aleksey Shipilev wrote: >>> CDS archive sizes are similar, >> >> I think this would impact the code archive, not the CDS archive. >> If it does reduce the on-disk size of code archive, then why not do this? It's pretty straightforward; not a complicated change IMO. > > I looked at both `.cds` and `.cds.code` files, and they are of similar size with `-XX:-TieredCompilation` whether we have this runtime check or not. I suspect this is because with `-XX:-TieredCompilation` we _do not have_ C1 compilations at all, so there is nothing to precompile. This makes the code change redundant. > I looked at both .cds and .cds.code files, and they are of similar size with -XX:-TieredCompilation whether we have this runtime check or not. I suspect this is because with -XX:-TieredCompilation we do not have C1 compilations at all, so there is nothing to precompile. This makes the code change redundant. hmm ... I just tried your original patch with [quarkus-getting-started](https://github.com/openjdk/leyden/tree/premain/test/hotspot/jtreg/premain/quarkus-getting-started) test and see the size of `.cds.code` goes down from `4816316` to `1459860` and `.cds` came down from `38363136` to `36966400` ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/32#discussion_r1949496630 From shade at openjdk.org Mon Feb 10 16:49:22 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 16:49:22 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v4] In-Reply-To: References: <69HkbPvMlOXDNmcs5DB3XFeiYMymo5J4OmzhawpMGHo=.9105ca7b-d3c1-474f-a5db-604a224c58b3@github.com> Message-ID: On Mon, 10 Feb 2025 16:43:03 GMT, Ashutosh Mehra wrote: >> I looked at both `.cds` and `.cds.code` files, and they are of similar size with `-XX:-TieredCompilation` whether we have this runtime check or not. I suspect this is because with `-XX:-TieredCompilation` we _do not have_ C1 compilations at all, so there is nothing to precompile. This makes the code change redundant. > >> I looked at both .cds and .cds.code files, and they are of similar size with -XX:-TieredCompilation whether we have this runtime check or not. I suspect this is because with -XX:-TieredCompilation we do not have C1 compilations at all, so there is nothing to precompile. This makes the code change redundant. > > hmm ... I just tried your original patch with [quarkus-getting-started](https://github.com/openjdk/leyden/tree/premain/test/hotspot/jtreg/premain/quarkus-getting-started) test and see the size of `.cds.code` goes down from `4816316` to `1459860` and `.cds` came down from `38363136` to `36966400` Do you see the same kind of improvement with new version of the patch and `-XX:-TieredCompilation`? ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/32#discussion_r1949504813 From asmehra at openjdk.org Mon Feb 10 16:55:28 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Mon, 10 Feb 2025 16:55:28 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v4] In-Reply-To: References: <69HkbPvMlOXDNmcs5DB3XFeiYMymo5J4OmzhawpMGHo=.9105ca7b-d3c1-474f-a5db-604a224c58b3@github.com> Message-ID: On Mon, 10 Feb 2025 16:47:02 GMT, Aleksey Shipilev wrote: > Do you see the same kind of improvement with new version of the patch and -XX:-TieredCompilation? aah! I get it now. For some reason I kept thinking we are not able to run with `-XX:-TieredCompilation` in the training/assembly run and this particular hunk fixes it. But that's not the case. My bad! ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/32#discussion_r1949522721 From adinn at redhat.com Mon Feb 10 16:59:28 2025 From: adinn at redhat.com (Andrew Dinn) Date: Mon, 10 Feb 2025 16:59:28 +0000 Subject: CFV: New leyden Committer: Aleksey Shipilev In-Reply-To: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> References: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> Message-ID: <6bdbe4e9-d5e3-4b0e-9a67-26ec31ed6cad@redhat.com> Vote: yes On 10/02/2025 16:25, Vladimir Kozlov wrote: > I hereby nominate Aleksey Shipilev [1] to Leyden Committer. > > Aleksey is part of OpenJDK group which is working on VM changes for > Leyden project (in premain branch). > He contributed number of significant changes to the project. He enable > GHA testing for our PRs in GitHub and number of changes to improve startup. > > Votes are due by 24 February 2025. > > Only current Leyden Committers [2] are eligible to vote > on this nomination.? Votes must be cast in the open by replying > to this mailing list. > > For Lazy Consensus voting instructions, see [3]. > > Thanks, > Vladimir Kozlov > > [1] https://openjdk.org/census#shade > [2] https://openjdk.org/census#leyden > [3] https://openjdk.org/projects/#committer-vote > > -- regards, Andrew Dinn ----------- Red Hat Distinguished Engineer Red Hat UK Ltd Registered in England and Wales under Company Registration No. 03798903 Directors: Michael Cunningham, Michael ("Mike") O'Neill From shade at openjdk.org Mon Feb 10 17:01:26 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 17:01:26 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v4] In-Reply-To: References: <69HkbPvMlOXDNmcs5DB3XFeiYMymo5J4OmzhawpMGHo=.9105ca7b-d3c1-474f-a5db-604a224c58b3@github.com> Message-ID: <84si_mjV4iAxi47nruKjgAcPeKKoN4KCkQc6LmX8dqg=.e94dbd12-857a-4c17-a94d-b3ed84d5c432@github.com> On Mon, 10 Feb 2025 16:53:21 GMT, Ashutosh Mehra wrote: >> Do you see the same kind of improvement with new version of the patch and `-XX:-TieredCompilation`? > >> Do you see the same kind of improvement with new version of the patch and -XX:-TieredCompilation? > > aah! I get it now. For some reason I kept thinking we are not able to run with `-XX:-TieredCompilation` in the training/assembly run and this particular hunk fixes it. But that's not the case. My bad! No problem! The interactions between different phases and compiler tiers are often confusing :) ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/32#discussion_r1949531792 From iklam at openjdk.org Mon Feb 10 17:11:24 2025 From: iklam at openjdk.org (Ioi Lam) Date: Mon, 10 Feb 2025 17:11:24 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v2] In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 15:35:51 GMT, Aleksey Shipilev wrote: > > Good. Until, as we discussed, cached code (and its data) will be part of CDS archive file. > > Yes, that would make this whole thing no-op. CDS mmap-s the archive already. > > > How CDS handles `mmap` on windows? > > Windows can still memory-map the file through its Windows APIs. But I _vaguely_ recollect some corner cases that @iklam fights every so often in CDS. Something with remapping or so? See `MetaspaceShared::use_windows_memory_mapping`, for example. I don't think it is wise to spend time dealing with those corner cases in current Leyden prototype, let it be part of whole CDS archive first. With the Windows APIs used by HotSpot today (VirtualAlloc and MapViewOfFile), we can't map a file into a reserved region. If we just want to mmap the SCCache into non-reserved, random location that's picked by the OS, we can already do that today with HotSpot. In some cases, CDS wants to mmap into reserved regions. On Windows, we end up not mapping with MapViewOfFile, but simply reading the entire CDS file into reserved memory. I think with this new API [MapViewOfFile3](https://learn.microsoft.com/en-us/windows/win32/api/memoryapi/nf-memoryapi-mapviewoffile3), we can map into a reserved region. This would be useful if, for example, we want the SCCache to be immediately next to CDS, so that the AOT code can use relative addressing for metadata pointers (InstanceKlass*, etc). ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2648703580 From jianglizhou at google.com Mon Feb 10 17:20:50 2025 From: jianglizhou at google.com (Jiangli Zhou) Date: Mon, 10 Feb 2025 09:20:50 -0800 Subject: CFV: New leyden Committer: Aleksey Shipilev In-Reply-To: <6bdbe4e9-d5e3-4b0e-9a67-26ec31ed6cad@redhat.com> References: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> <6bdbe4e9-d5e3-4b0e-9a67-26ec31ed6cad@redhat.com> Message-ID: Vote: yes Best Regards Jiangli On Mon, Feb 10, 2025 at 8:59?AM Andrew Dinn wrote: > > Vote: yes > > On 10/02/2025 16:25, Vladimir Kozlov wrote: > > I hereby nominate Aleksey Shipilev [1] to Leyden Committer. > > > > Aleksey is part of OpenJDK group which is working on VM changes for > > Leyden project (in premain branch). > > He contributed number of significant changes to the project. He enable > > GHA testing for our PRs in GitHub and number of changes to improve startup. > > > > Votes are due by 24 February 2025. > > > > Only current Leyden Committers [2] are eligible to vote > > on this nomination. Votes must be cast in the open by replying > > to this mailing list. > > > > For Lazy Consensus voting instructions, see [3]. > > > > Thanks, > > Vladimir Kozlov > > > > [1] https://openjdk.org/census#shade > > [2] https://openjdk.org/census#leyden > > [3] https://openjdk.org/projects/#committer-vote > > > > > > -- > regards, > > > Andrew Dinn > ----------- > Red Hat Distinguished Engineer > Red Hat UK Ltd > Registered in England and Wales under Company Registration No. 03798903 > Directors: Michael Cunningham, Michael ("Mike") O'Neill > From ioi.lam at oracle.com Mon Feb 10 17:23:01 2025 From: ioi.lam at oracle.com (ioi.lam at oracle.com) Date: Mon, 10 Feb 2025 09:23:01 -0800 Subject: CFV: New leyden Committer: Aleksey Shipilev In-Reply-To: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> References: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> Message-ID: Vote: Yes Ioi Lam On 2/10/25 8:25 AM, Vladimir Kozlov wrote: > I hereby nominate Aleksey Shipilev [1] to Leyden Committer. > > Aleksey is part of OpenJDK group which is working on VM changes for > Leyden project (in premain branch). > He contributed number of significant changes to the project. He enable > GHA testing for our PRs in GitHub and number of changes to improve > startup. > > Votes are due by 24 February 2025. > > Only current Leyden Committers [2] are eligible to vote > on this nomination.? Votes must be cast in the open by replying > to this mailing list. > > For Lazy Consensus voting instructions, see [3]. > > Thanks, > Vladimir Kozlov > > [1] https://openjdk.org/census#shade > [2] https://openjdk.org/census#leyden > [3] https://openjdk.org/projects/#committer-vote > > From shade at openjdk.org Mon Feb 10 17:27:20 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 17:27:20 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v2] In-Reply-To: References: Message-ID: <-p_whAcsNt8FhMEyPnvTy3Xw-T33yZPgrLCbW-ujVOw=.b74b4f77-db8d-4185-8570-33cc9b63f511@github.com> On Mon, 10 Feb 2025 17:09:07 GMT, Ioi Lam wrote: > With the Windows APIs used by HotSpot today (VirtualAlloc and MapViewOfFile), we can't map a file into a reserved region. If we just want to mmap the SCCache into non-reserved, random location that's picked by the OS, we can already do that today with HotSpot. > > In some cases, CDS wants to mmap into reserved regions. On Windows, we end up not mapping with MapViewOfFile, but simply reading the entire CDS file into reserved memory. OK, great. AFAICS, this technically allows us to do `MmapCachedCode = true` on Windows too. Non-Windows currently rely on `MAP_PRIVATE` to get us COW. I believe `FILE_MAP_COPY` in `os::pd_map_memory` gives us the same on Windows. Still, I think it is a bit saner to keep doing mmap-ing only on Linux, if only to test that non-mmap path works and not force us to debug Windows mmap issues in Leyden prototype. But I don't feel strongly about this. Opinions welcome! ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2648743236 From shade at openjdk.org Mon Feb 10 17:59:01 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 17:59:01 GMT Subject: RFR: 8349748: [leyden] ciEnv::register_method should lock the correct queue lock Message-ID: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> Mainline code locks `MethodCompileQueue_lock` in `ciEnv::register_method`. But with Leyden-s `UseGlobalCompileQueueLock = false`, we have separate locks, per compile queue. So it seems to stand to reason we should be locking those locks, not a global one. I have not been able to attribute this gap to any bug or performance issue, but I think we better fix this proactively. ------------- Commit messages: - Fix Changes: https://git.openjdk.org/leyden/pull/37/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=37&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8349748 Stats: 1 line in 1 file changed: 0 ins; 0 del; 1 mod Patch: https://git.openjdk.org/leyden/pull/37.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/37/head:pull/37 PR: https://git.openjdk.org/leyden/pull/37 From shade at openjdk.org Mon Feb 10 18:20:11 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 18:20:11 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete [v2] In-Reply-To: References: Message-ID: > During one of the meetings, @iwanowww suggested there is a diagnostic option to block the execution until all preloaded code is finished loading. For the Java application, it would then look as if the entirety of preload code was loaded "instantaneously", which helps to estimate the performance floor for a given workload. > > I have found no such option in current Leyden prototype, though, so this RFE should implement one. > > This is indeed helpful, especially combined with #32, which allows to run with only C2. Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: - Diagnostic - Merge branch 'premain' into JDK-8349722-leyden-block-preload - Fix ------------- Changes: - all: https://git.openjdk.org/leyden/pull/36/files - new: https://git.openjdk.org/leyden/pull/36/files/91819930..0810eae4 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=36&range=01 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=36&range=00-01 Stats: 15 lines in 2 files changed: 0 ins; 3 del; 12 mod Patch: https://git.openjdk.org/leyden/pull/36.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/36/head:pull/36 PR: https://git.openjdk.org/leyden/pull/36 From shade at openjdk.org Mon Feb 10 18:20:12 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 18:20:12 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete [v2] In-Reply-To: <9n7SHbCang4wWnBiUHFPsQwMkcLqtmVJVfFFI5wwJwA=.33b880eb-f84d-466e-93bf-7a64044f9d9f@github.com> References: <9n7SHbCang4wWnBiUHFPsQwMkcLqtmVJVfFFI5wwJwA=.33b880eb-f84d-466e-93bf-7a64044f9d9f@github.com> Message-ID: On Mon, 10 Feb 2025 16:05:44 GMT, Aleksey Shipilev wrote: >> src/hotspot/share/compiler/compileBroker.cpp line 1763: >> >>> 1761: bool is_blocking = ReplayCompiles || >>> 1762: !directive->BackgroundCompilationOption || >>> 1763: (PreloadBlocking && (compile_reason == CompileTask::Reason_Preload)) || >> >> I was thinking may be set `BackgroundCompilation` flag to `false` temporary in `SCCache::preload_startup_code()` which loads all startup code. We do similar thing when dumping CS archive: >> https://github.com/openjdk/leyden/blob/premain/src/hotspot/share/cds/cdsConfig.cpp#L547 >> >> But I am not sure how such temporary setting affects `directive->BackgroundCompilationOption`. > > Oh. Let me try. I don't think it works well. AFAICS, default compiler directives get initialized off the global `BackgroundCompilation` option at init time, through `DirectivesStack::init` during `CompilerBroker` init. The dumping CS path you linked above works, because it adjusts the global flag during arguments processing, before compiler broker is initialized. For our use here, it is too late to flip `BackgroundCompilation` to `false` and back. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/36#discussion_r1949656431 From shade at openjdk.org Mon Feb 10 18:20:13 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 10 Feb 2025 18:20:13 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete [v2] In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 15:44:38 GMT, Vladimir Kozlov wrote: >> Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: >> >> - Diagnostic >> - Merge branch 'premain' into JDK-8349722-leyden-block-preload >> - Fix > > src/hotspot/share/compiler/compiler_globals.hpp line 494: > >> 492: "Exit after precompilation step is over") \ >> 493: \ >> 494: product(bool, PreloadBlocking, false, \ > > Should be diagnostic flag Done. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/36#discussion_r1949656898 From kvn at openjdk.org Mon Feb 10 19:55:22 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Mon, 10 Feb 2025 19:55:22 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete [v2] In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 18:20:11 GMT, Aleksey Shipilev wrote: >> During one of the meetings, @iwanowww suggested there is a diagnostic option to block the execution until all preloaded code is finished loading. For the Java application, it would then look as if the entirety of preload code was loaded "instantaneously", which helps to estimate the performance floor for a given workload. >> >> I have found no such option in current Leyden prototype, though, so this RFE should implement one. >> >> This is indeed helpful, especially combined with #32, which allows to run with only C2. > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Diagnostic > - Merge branch 'premain' into JDK-8349722-leyden-block-preload > - Fix Good. ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/36#pullrequestreview-2607006550 From kvn at openjdk.org Mon Feb 10 19:55:23 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Mon, 10 Feb 2025 19:55:23 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete [v2] In-Reply-To: References: <9n7SHbCang4wWnBiUHFPsQwMkcLqtmVJVfFFI5wwJwA=.33b880eb-f84d-466e-93bf-7a64044f9d9f@github.com> Message-ID: On Mon, 10 Feb 2025 18:16:39 GMT, Aleksey Shipilev wrote: >> Oh. Let me try. > > I don't think it works well. AFAICS, default compiler directives get initialized off the global `BackgroundCompilation` option at init time, through `DirectivesStack::init` during `CompilerBroker` init. The dumping CS path you linked above works, because it adjusts the global flag during arguments processing, before compiler broker is initialized. > > For our use here, it is too late to flip `BackgroundCompilation` to `false` and back. Thank you for checking. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/36#discussion_r1949789066 From vlivanov at openjdk.org Mon Feb 10 21:24:34 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Mon, 10 Feb 2025 21:24:34 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v4] In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 16:38:09 GMT, Aleksey Shipilev wrote: >> Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. >> >> There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. >> >> This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. >> >> Additional testing: >> - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive >> - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` >> - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains five additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349457-enable-c2 > - Revert Precompiler additions > - Merge branch 'premain' into JDK-8349457-enable-c2 > - More fixes > - Fix Looks good. ------------- Marked as reviewed by vlivanov (Committer). PR Review: https://git.openjdk.org/leyden/pull/32#pullrequestreview-2607201324 From calvin.cheung at oracle.com Mon Feb 10 21:25:45 2025 From: calvin.cheung at oracle.com (Calvin Cheung) Date: Mon, 10 Feb 2025 13:25:45 -0800 Subject: CFV: New leyden Committer: Aleksey Shipilev In-Reply-To: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> References: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> Message-ID: <1cd4624a-91d3-4de0-b568-0b0c701479c3@oracle.com> Vote: yes On 2/10/25 8:25 AM, Vladimir Kozlov wrote: > I hereby nominate Aleksey Shipilev [1] to Leyden Committer. > > Aleksey is part of OpenJDK group which is working on VM changes for > Leyden project (in premain branch). > He contributed number of significant changes to the project. He enable > GHA testing for our PRs in GitHub and number of changes to improve > startup. > > Votes are due by 24 February 2025. > > Only current Leyden Committers [2] are eligible to vote > on this nomination.? Votes must be cast in the open by replying > to this mailing list. > > For Lazy Consensus voting instructions, see [3]. > > Thanks, > Vladimir Kozlov > > [1] https://openjdk.org/census#shade > [2] https://openjdk.org/census#leyden > [3] https://openjdk.org/projects/#committer-vote > > From vlivanov at openjdk.org Mon Feb 10 21:29:27 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Mon, 10 Feb 2025 21:29:27 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete [v2] In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 18:20:11 GMT, Aleksey Shipilev wrote: >> During one of the meetings, @iwanowww suggested there is a diagnostic option to block the execution until all preloaded code is finished loading. For the Java application, it would then look as if the entirety of preload code was loaded "instantaneously", which helps to estimate the performance floor for a given workload. >> >> I have found no such option in current Leyden prototype, though, so this RFE should implement one. >> >> This is indeed helpful, especially combined with #32, which allows to run with only C2. > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Diagnostic > - Merge branch 'premain' into JDK-8349722-leyden-block-preload > - Fix Looks good. FTR I experimented with bulk preloading to speed up things (submit all preload tasks and block waiting until all are finished), but it turned out to require significantly more code for no particular benefit (the mode is not performance critical and, compared to compilation, preloading is already fast enough). ------------- Marked as reviewed by vlivanov (Committer). PR Review: https://git.openjdk.org/leyden/pull/36#pullrequestreview-2607210101 From vladimir.x.ivanov at oracle.com Mon Feb 10 21:31:26 2025 From: vladimir.x.ivanov at oracle.com (Vladimir Ivanov) Date: Mon, 10 Feb 2025 21:31:26 +0000 Subject: CFV: New leyden Committer: Aleksey Shipilev In-Reply-To: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> References: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> Message-ID: <1E5E39C5-17C5-4235-9506-D8DBCA2C32B8@oracle.com> Vote: yes Best regards, Vladimir Ivanov > On Feb 10, 2025, at 08:25, Vladimir Kozlov wrote: > > I hereby nominate Aleksey Shipilev [1] to Leyden Committer. > > Aleksey is part of OpenJDK group which is working on VM changes for Leyden project (in premain branch). > He contributed number of significant changes to the project. He enable GHA testing for our PRs in GitHub and number of changes to improve startup. > > Votes are due by 24 February 2025. > > Only current Leyden Committers [2] are eligible to vote > on this nomination. Votes must be cast in the open by replying > to this mailing list. > > For Lazy Consensus voting instructions, see [3]. > > Thanks, > Vladimir Kozlov > > [1] https://openjdk.org/census#shade > [2] https://openjdk.org/census#leyden > [3] https://openjdk.org/projects/#committer-vote > > From vlivanov at openjdk.org Mon Feb 10 21:31:40 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Mon, 10 Feb 2025 21:31:40 GMT Subject: RFR: 8349748: [leyden] ciEnv::register_method should lock the correct queue lock In-Reply-To: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> References: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> Message-ID: On Mon, 10 Feb 2025 17:53:39 GMT, Aleksey Shipilev wrote: > Mainline code locks `MethodCompileQueue_lock` in `ciEnv::register_method`. But with Leyden-s `UseGlobalCompileQueueLock = false`, we have separate locks, per compile queue. So it seems to stand to reason we should be locking those locks, not a global one. > > I have not been able to attribute this gap to any bug or performance issue, but I think we better fix this proactively. Good catch. Looks good. FTR I suspected the locking here is redundant, but haven't had enough time to build enough confidence to get rid of it. ------------- Marked as reviewed by vlivanov (Committer). PR Review: https://git.openjdk.org/leyden/pull/37#pullrequestreview-2607215529 From shade at openjdk.org Tue Feb 11 07:09:24 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 07:09:24 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete [v2] In-Reply-To: References: Message-ID: <0L_r4U0cNnOeGD0LSySd6--Cj10igfVveH96gS1pdg0=.27d24370-2532-4b98-8fb8-c2b3c93a5b9a@github.com> On Mon, 10 Feb 2025 18:20:11 GMT, Aleksey Shipilev wrote: >> During one of the meetings, @iwanowww suggested there is a diagnostic option to block the execution until all preloaded code is finished loading. For the Java application, it would then look as if the entirety of preload code was loaded "instantaneously", which helps to estimate the performance floor for a given workload. >> >> I have found no such option in current Leyden prototype, though, so this RFE should implement one. >> >> This is indeed helpful, especially combined with #32, which allows to run with only C2. > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Diagnostic > - Merge branch 'premain' into JDK-8349722-leyden-block-preload > - Fix Thanks! ------------- PR Comment: https://git.openjdk.org/leyden/pull/36#issuecomment-2649979038 From duke at openjdk.org Tue Feb 11 07:09:24 2025 From: duke at openjdk.org (duke) Date: Tue, 11 Feb 2025 07:09:24 GMT Subject: RFR: 8349722: [leyden] Option to block until preloading is complete [v2] In-Reply-To: References: Message-ID: <3sEfHUgb7NQAh_INg0cwMSoDwhKNUvj9jeOrFHel7FA=.0da09f8f-433a-4108-9501-111b57b877c4@github.com> On Mon, 10 Feb 2025 18:20:11 GMT, Aleksey Shipilev wrote: >> During one of the meetings, @iwanowww suggested there is a diagnostic option to block the execution until all preloaded code is finished loading. For the Java application, it would then look as if the entirety of preload code was loaded "instantaneously", which helps to estimate the performance floor for a given workload. >> >> I have found no such option in current Leyden prototype, though, so this RFE should implement one. >> >> This is indeed helpful, especially combined with #32, which allows to run with only C2. > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Diagnostic > - Merge branch 'premain' into JDK-8349722-leyden-block-preload > - Fix @shipilev Your change (at version 0810eae4dc627f39689f66adef4b3b04035d190d) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/36#issuecomment-2649980847 From shade at openjdk.org Tue Feb 11 07:09:42 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 07:09:42 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v4] In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 16:38:09 GMT, Aleksey Shipilev wrote: >> Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. >> >> There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. >> >> This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. >> >> Additional testing: >> - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive >> - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` >> - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains five additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349457-enable-c2 > - Revert Precompiler additions > - Merge branch 'premain' into JDK-8349457-enable-c2 > - More fixes > - Fix Thanks! ------------- PR Comment: https://git.openjdk.org/leyden/pull/32#issuecomment-2649979376 From duke at openjdk.org Tue Feb 11 07:09:42 2025 From: duke at openjdk.org (duke) Date: Tue, 11 Feb 2025 07:09:42 GMT Subject: RFR: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation [v4] In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 16:38:09 GMT, Aleksey Shipilev wrote: >> Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. >> >> There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. >> >> This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. >> >> Additional testing: >> - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive >> - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` >> - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains five additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349457-enable-c2 > - Revert Precompiler additions > - Merge branch 'premain' into JDK-8349457-enable-c2 > - More fixes > - Fix @shipilev Your change (at version 6cdde25965be16bb787c98ab27489592297d0ca1) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/32#issuecomment-2649980502 From shade at openjdk.org Tue Feb 11 07:10:23 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 07:10:23 GMT Subject: RFR: 8349748: [leyden] ciEnv::register_method should lock the correct queue lock In-Reply-To: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> References: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> Message-ID: On Mon, 10 Feb 2025 17:53:39 GMT, Aleksey Shipilev wrote: > Mainline code locks `MethodCompileQueue_lock` in `ciEnv::register_method`. But with Leyden-s `UseGlobalCompileQueueLock = false`, we have separate locks, per compile queue. So it seems to stand to reason we should be locking those locks, not a global one. > > I have not been able to attribute this gap to any bug or performance issue, but I think we better fix this proactively. Thanks! ------------- PR Comment: https://git.openjdk.org/leyden/pull/37#issuecomment-2649980105 From duke at openjdk.org Tue Feb 11 07:10:23 2025 From: duke at openjdk.org (duke) Date: Tue, 11 Feb 2025 07:10:23 GMT Subject: RFR: 8349748: [leyden] ciEnv::register_method should lock the correct queue lock In-Reply-To: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> References: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> Message-ID: On Mon, 10 Feb 2025 17:53:39 GMT, Aleksey Shipilev wrote: > Mainline code locks `MethodCompileQueue_lock` in `ciEnv::register_method`. But with Leyden-s `UseGlobalCompileQueueLock = false`, we have separate locks, per compile queue. So it seems to stand to reason we should be locking those locks, not a global one. > > I have not been able to attribute this gap to any bug or performance issue, but I think we better fix this proactively. @shipilev Your change (at version 04487caadaf47183b86eedc97b2de1a71ebbccfe) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/37#issuecomment-2649982366 From shade at openjdk.org Tue Feb 11 10:52:59 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 10:52:59 GMT Subject: RFR: 8349814: [leyden] Avoid uncommon traps in preload code Message-ID: Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. Additional testing: - [x] Ad-hoc perf tests (see comment below) - [x] Linux x86_64 server fastdebug, `runtime/cds` ------------- Commit messages: - Fix Changes: https://git.openjdk.org/leyden/pull/38/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=38&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8349814 Stats: 19 lines in 3 files changed: 18 ins; 0 del; 1 mod Patch: https://git.openjdk.org/leyden/pull/38.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/38/head:pull/38 PR: https://git.openjdk.org/leyden/pull/38 From shade at openjdk.org Tue Feb 11 10:52:59 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 10:52:59 GMT Subject: RFR: 8349814: [leyden] Avoid uncommon traps in preload code In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 10:47:37 GMT, Aleksey Shipilev wrote: > Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. > > Additional testing: > - [x] Ad-hoc perf tests (see comment below) > - [x] Linux x86_64 server fastdebug, `runtime/cds` Since this avoids excess C2 (re-)compilations, the major impact is on "user" time. This impact reflects to run-to-run times when we are short on available CPU cores: Benchmark 1: build/linux-x86_64-server-release/images/jdk/bin/java -Xms64m -Xmx1g -XX:+UseParallelGC \ -XX:CacheDataStore=JavacBenchApp.cds -cp JavacBenchApp.jar JavacBenchApp 50 # --- 32 cores # Before: ~38 deopts from preload code Time (mean ? ?): 436.9 ms ? 9.0 ms [User: 1162.8 ms, System: 148.6 ms] Range (min ? max): 428.2 ms ? 453.4 ms 10 runs # After: ~0 deopts from preload code Time (mean ? ?): 438.2 ms ? 4.5 ms [User: 828.9 ms, System: 131.0 ms] Range (min ? max): 430.3 ms ? 444.9 ms 10 runs # --- 2 cores # Before: ~30 deopts from preload code Time (mean ? ?): 531.0 ms ? 12.8 ms [User: 846.1 ms, System: 117.8 ms] Range (min ? max): 508.9 ms ? 553.1 ms 10 runs # After: ~0 deopts from preload code Time (mean ? ?): 510.4 ms ? 14.1 ms [User: 803.7 ms, System: 115.0 ms] Range (min ? max): 483.7 ms ? 535.5 ms 10 runs ------------- PR Comment: https://git.openjdk.org/leyden/pull/38#issuecomment-2650438536 From shipilev at amazon.de Tue Feb 11 11:56:39 2025 From: shipilev at amazon.de (Aleksey Shipilev) Date: Tue, 11 Feb 2025 12:56:39 +0100 Subject: Leyden PRs and repo-leyden bugs In-Reply-To: <127cd304-2911-41f4-a0bb-b82123daa90c@oracle.com> References: <127cd304-2911-41f4-a0bb-b82123daa90c@oracle.com> Message-ID: <8d3a1e62-ac04-4930-bd9b-602adad54712@amazon.de> Right, thanks! Mark / John / Ioi, if you could confirm our desire to make this work for Leyden PRs? Thanks, -Aleksey On 10.02.25 19:51, Erik Joelsson wrote: > CAUTION: This email originated from outside of the organization. Do not click links or open > attachments unless you can confirm the sender and know the content is safe. > > > > The leyden repository has not been configured for "issue notification", > so Skara is making no attempt at notifying issues in JBS based on > repository activity. This is a server/bot side configuration that's > missing. You should not change .jcheck/conf. > > If you would like this to be configured, please get the project lead to > confirm. > > /Erik > > On 2/10/25 8:37 AM, Aleksey Shipilev wrote: >> (cc'ing leyden-dev@) >> >> Hi Skara devs! >> >> I was wondering what kind of config Leyden repo is missing, so that >> PRs are not closed automatically? See for example this bug: >> ? https://bugs.openjdk.org/browse/JDK-8348960 >> >> ...and here is the integrated PR: >> ? https://github.com/openjdk/leyden/pull/30 >> >> I suspect the problem might be that PRs are targeting the "premain", >> not "master" branch? Is there a way to tell bots to treat "premain" >> branch as repo-leyden, maybe? >> >> Here is jcheck for premain branch: >> ? https://github.com/openjdk/leyden/blob/premain/.jcheck/conf >> From kvn at openjdk.org Tue Feb 11 16:25:02 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Tue, 11 Feb 2025 16:25:02 GMT Subject: git: openjdk/leyden: premain: 2 new changesets Message-ID: Changeset: 0a320773 Branch: premain Author: Aleksey Shipilev Committer: Vladimir Kozlov Date: 2025-02-11 16:22:51 +0000 URL: https://git.openjdk.org/leyden/commit/0a320773ff5b2340148355d0b2c5d4563acd97cf 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation Reviewed-by: asmehra, iveresov, vlivanov ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/compiler/compilerDefinitions.cpp Changeset: cc546e25 Branch: premain Author: Aleksey Shipilev Committer: Vladimir Kozlov Date: 2025-02-11 16:23:12 +0000 URL: https://git.openjdk.org/leyden/commit/cc546e25aa4d0fb6d055ce29c3cd2c82aaae97ac 8349722: [leyden] Option to block until preloading is complete Reviewed-by: kvn, vlivanov ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/compiler/compiler_globals.hpp From shade at openjdk.org Tue Feb 11 16:25:33 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 16:25:33 GMT Subject: Integrated: 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation In-Reply-To: References: Message-ID: On Wed, 5 Feb 2025 12:14:56 GMT, Aleksey Shipilev wrote: > Currently, supplying `-XX:-TieredCompilation` would break with Leyden workflows, because the archive-backed code cache heap would only be created if `SegmentedCodeCache` is enabled. With default compilation policy, this happens normally when tiered compilation is enabled, but not without it. > > There are other minor peculiarities that we need to handle, which are exposed with `runtime/cds` + `-XX:-TieredCompilation` runs. > > This prevents us from testing C2-only Leyden configs and studying compilation dynamics without tiered policy getting in the way. > > Additional testing: > - [x] Ad-hoc Leyden experiments now work with `-XX:-TieredCompilation`: the C2-only code is being stored and loaded successfully from the CDS archive > - [x] `runtime/cds` now passes with `-XX:-TieredCompilation` > - [x] `runtime/cds` still passes by default (i.e. with tiered compilation) This pull request has now been integrated. Changeset: 0a320773 Author: Aleksey Shipilev Committer: Vladimir Kozlov URL: https://git.openjdk.org/leyden/commit/0a320773ff5b2340148355d0b2c5d4563acd97cf Stats: 15 lines in 2 files changed: 15 ins; 0 del; 0 mod 8349457: [leyden] Workaround Leyden problems with -XX:-TieredCompilation Reviewed-by: asmehra, iveresov, vlivanov ------------- PR: https://git.openjdk.org/leyden/pull/32 From shade at openjdk.org Tue Feb 11 16:26:29 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 16:26:29 GMT Subject: Integrated: 8349722: [leyden] Option to block until preloading is complete In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 14:36:52 GMT, Aleksey Shipilev wrote: > During one of the meetings, @iwanowww suggested there is a diagnostic option to block the execution until all preloaded code is finished loading. For the Java application, it would then look as if the entirety of preload code was loaded "instantaneously", which helps to estimate the performance floor for a given workload. > > I have found no such option in current Leyden prototype, though, so this RFE should implement one. > > This is indeed helpful, especially combined with #32, which allows to run with only C2. This pull request has now been integrated. Changeset: cc546e25 Author: Aleksey Shipilev Committer: Vladimir Kozlov URL: https://git.openjdk.org/leyden/commit/cc546e25aa4d0fb6d055ce29c3cd2c82aaae97ac Stats: 7 lines in 2 files changed: 6 ins; 0 del; 1 mod 8349722: [leyden] Option to block until preloading is complete Reviewed-by: kvn, vlivanov ------------- PR: https://git.openjdk.org/leyden/pull/36 From kvn at openjdk.org Tue Feb 11 16:27:08 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Tue, 11 Feb 2025 16:27:08 GMT Subject: git: openjdk/leyden: premain: 8349748: [leyden] ciEnv::register_method should lock the correct queue lock Message-ID: <093688c8-8a51-476a-9362-03cb45fad244@openjdk.org> Changeset: 8125f60b Branch: premain Author: Aleksey Shipilev Committer: Vladimir Kozlov Date: 2025-02-11 16:25:07 +0000 URL: https://git.openjdk.org/leyden/commit/8125f60b444f5e7bc0b36bfcdeb75fe9c14fdb91 8349748: [leyden] ciEnv::register_method should lock the correct queue lock Reviewed-by: vlivanov, kvn ! src/hotspot/share/ci/ciEnv.cpp From shade at openjdk.org Tue Feb 11 16:28:23 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 16:28:23 GMT Subject: Integrated: 8349748: [leyden] ciEnv::register_method should lock the correct queue lock In-Reply-To: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> References: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> Message-ID: <_gLxSEMs9EwaTBzekZXiNgpB7T3Dg4SfRoA3Vemb_I4=.9badac22-8254-4b36-b04f-52e49313573b@github.com> On Mon, 10 Feb 2025 17:53:39 GMT, Aleksey Shipilev wrote: > Mainline code locks `MethodCompileQueue_lock` in `ciEnv::register_method`. But with Leyden-s `UseGlobalCompileQueueLock = false`, we have separate locks, per compile queue. So it seems to stand to reason we should be locking those locks, not a global one. > > I have not been able to attribute this gap to any bug or performance issue, but I think we better fix this proactively. This pull request has now been integrated. Changeset: 8125f60b Author: Aleksey Shipilev Committer: Vladimir Kozlov URL: https://git.openjdk.org/leyden/commit/8125f60b444f5e7bc0b36bfcdeb75fe9c14fdb91 Stats: 1 line in 1 file changed: 0 ins; 0 del; 1 mod 8349748: [leyden] ciEnv::register_method should lock the correct queue lock Reviewed-by: vlivanov, kvn ------------- PR: https://git.openjdk.org/leyden/pull/37 From kvn at openjdk.org Tue Feb 11 16:28:23 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Tue, 11 Feb 2025 16:28:23 GMT Subject: RFR: 8349748: [leyden] ciEnv::register_method should lock the correct queue lock In-Reply-To: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> References: <6g63jqHNd5OKOs8zuK9Kylz3h8-rhXk1WGQP2Qj-Zy8=.6ff226b7-38fb-498a-bb8e-4a58e0bfe4b2@github.com> Message-ID: <5f1DAIqm1gmaChfcHJp1GQnS4ogxVnCaY_E84aRuUlg=.a5a501db-7bf6-4b43-8ee8-4d851b1cc434@github.com> On Mon, 10 Feb 2025 17:53:39 GMT, Aleksey Shipilev wrote: > Mainline code locks `MethodCompileQueue_lock` in `ciEnv::register_method`. But with Leyden-s `UseGlobalCompileQueueLock = false`, we have separate locks, per compile queue. So it seems to stand to reason we should be locking those locks, not a global one. > > I have not been able to attribute this gap to any bug or performance issue, but I think we better fix this proactively. Good. ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/37#pullrequestreview-2609295225 From kvn at openjdk.org Tue Feb 11 16:30:29 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Tue, 11 Feb 2025 16:30:29 GMT Subject: RFR: 8349814: [leyden] Avoid uncommon traps in preload code In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 10:47:37 GMT, Aleksey Shipilev wrote: > Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. > > Additional testing: > - [x] Ad-hoc perf tests (see comment below) > - [x] Linux x86_64 server fastdebug, `runtime/cds` src/hotspot/share/compiler/precompiler.cpp line 215: > 213: IntxFlagSetting fs2(PerMethodSpecTrapLimit, 0); > 214: > 215: compile_cached_code(CompLevel_full_optimization, true, CompLevel_full_optimization, CHECK); Please add ` /*for_preload*/` for second parameter. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/38#discussion_r1951177100 From shade at openjdk.org Tue Feb 11 16:39:39 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 16:39:39 GMT Subject: RFR: 8349814: [leyden] Avoid uncommon traps in preload code [v2] In-Reply-To: References: Message-ID: > Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. > > Additional testing: > - [x] Ad-hoc perf tests (see comment below) > - [x] Linux x86_64 server fastdebug, `runtime/cds` Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: - Merge branch 'premain' into JDK-8349814-preload-avoid-uncommon-traps - Comment - Fix ------------- Changes: - all: https://git.openjdk.org/leyden/pull/38/files - new: https://git.openjdk.org/leyden/pull/38/files/04a27a7f..4051ce11 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=38&range=01 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=38&range=00-01 Stats: 24 lines in 6 files changed: 21 ins; 0 del; 3 mod Patch: https://git.openjdk.org/leyden/pull/38.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/38/head:pull/38 PR: https://git.openjdk.org/leyden/pull/38 From shade at openjdk.org Tue Feb 11 16:39:39 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 16:39:39 GMT Subject: RFR: 8349814: [leyden] Avoid uncommon traps in preload code [v2] In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 16:27:28 GMT, Vladimir Kozlov wrote: >> Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: >> >> - Merge branch 'premain' into JDK-8349814-preload-avoid-uncommon-traps >> - Comment >> - Fix > > src/hotspot/share/compiler/precompiler.cpp line 215: > >> 213: IntxFlagSetting fs2(PerMethodSpecTrapLimit, 0); >> 214: >> 215: compile_cached_code(CompLevel_full_optimization, true, CompLevel_full_optimization, CHECK); > > Please add ` /*for_preload*/` for second parameter. Done! ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/38#discussion_r1951193029 From shade at openjdk.org Tue Feb 11 16:40:30 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 16:40:30 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v4] In-Reply-To: References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: On Thu, 6 Feb 2025 22:00:38 GMT, Vladimir Ivanov wrote: >> Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains four additional commits since the last revision: >> >> - Merge branch 'premain' into JDK-8349539-allow-hidden >> - Merge branch 'premain' into JDK-8349539-allow-hidden >> - Moving the check around >> - Fix > > I agree that the restriction for hidden classes can be lifted. > > But there are non-default modes where it still matters (`UseMetadataPointers == true`). > I suggest to keep `klass->is_hidden()` check, but move it down to guard symbolic resolution case. Are we good with this, @iwanowww? Is this the correct place to move the check? ------------- PR Comment: https://git.openjdk.org/leyden/pull/33#issuecomment-2651371189 From shade at openjdk.org Tue Feb 11 18:45:33 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 18:45:33 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v2] In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 16:36:04 GMT, Aleksey Shipilev wrote: >> It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. >> >> We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. >> >> I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. >> >> Additional testing: >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains two additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349713-mmap-sccache > - Fix Any other opinions about this? I would like to integrate this to reap some startup benefits :) ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2651695745 From duke at openjdk.org Tue Feb 11 19:05:33 2025 From: duke at openjdk.org (duke) Date: Tue, 11 Feb 2025 19:05:33 GMT Subject: git: openjdk/leyden: hermetic-java-runtime: 26 new changesets Message-ID: Changeset: 5395ffa0 Branch: hermetic-java-runtime Author: Joe Wang Date: 2025-02-08 02:48:04 +0000 URL: https://git.openjdk.org/leyden/commit/5395ffa006d06fb2b6a087885a9d7118048e6696 8327378: XMLStreamReader throws EOFException instead of XMLStreamException Reviewed-by: iris, lancea, naoto ! src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/XMLDTDScannerImpl.java ! src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl.java + test/jaxp/javax/xml/jaxp/unittest/stream/XMLStreamReaderTest/ExceptionTest.java Changeset: e9278de3 Branch: hermetic-java-runtime Author: Quan Anh Mai Date: 2025-02-08 04:20:46 +0000 URL: https://git.openjdk.org/leyden/commit/e9278de3f8676c288bfdce96f8348470e7c42900 8348411: C2: Remove the control input of LoadKlassNode and LoadNKlassNode Reviewed-by: vlivanov, epeter ! src/hotspot/share/opto/doCall.cpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/macro.cpp ! src/hotspot/share/opto/macroArrayCopy.cpp ! src/hotspot/share/opto/memnode.cpp ! src/hotspot/share/opto/memnode.hpp ! src/hotspot/share/opto/parse1.cpp ! src/hotspot/share/opto/parseHelper.cpp ! src/hotspot/share/opto/subtypenode.cpp Changeset: 7d52f1e6 Branch: hermetic-java-runtime Author: Thomas Stuefe Date: 2025-02-08 06:35:27 +0000 URL: https://git.openjdk.org/leyden/commit/7d52f1e64d17d4a77dacc6074ead11e975eed9eb 8349525: RBTree: provide leftmost, rightmost, and a simple way to print trees Reviewed-by: jsjolen, cnorrbin ! src/hotspot/share/utilities/rbTree.hpp ! src/hotspot/share/utilities/rbTree.inline.hpp ! test/hotspot/gtest/utilities/test_rbtree.cpp Changeset: 8f6ccde9 Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-08 13:11:07 +0000 URL: https://git.openjdk.org/leyden/commit/8f6ccde9829ea0e4fe1c087e68bec4d9efb55c64 8349554: [UBSAN] os::attempt_reserve_memory_between reported applying non-zero offset to non-null pointer produced null pointer Reviewed-by: stefank, stuefe ! src/hotspot/share/runtime/os.cpp Changeset: 4a83ca12 Branch: hermetic-java-runtime Author: Hamlin Li Date: 2025-02-10 11:25:20 +0000 URL: https://git.openjdk.org/leyden/commit/4a83ca120293aecbf21d7d005ba256e95fe98299 8349666: RISC-V: enable superwords tests for vector reductions Reviewed-by: fyang, luhenry ! test/hotspot/jtreg/compiler/loopopts/superword/MinMaxRed_Int.java ! test/hotspot/jtreg/compiler/loopopts/superword/RedTest_int.java ! test/hotspot/jtreg/compiler/loopopts/superword/RedTest_long.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRedAbsNeg_Float.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRedSqrt_Double.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRed_Double.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRed_Float.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRed_Int.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRed_Long.java Changeset: d104debe Branch: hermetic-java-runtime Author: Hamlin Li Date: 2025-02-10 11:47:57 +0000 URL: https://git.openjdk.org/leyden/commit/d104debe51d8feb35b7c672a9d05404208bc5526 8349556: RISC-V: improve the performance when -COH and -AvoidUnalignedAccesses for UL and LU string comparison Reviewed-by: fyang, vkempik ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/stubGenerator_riscv.cpp Changeset: 55898922 Branch: hermetic-java-runtime Author: Volkan Yazici Committer: Jaikiran Pai Date: 2025-02-10 12:12:54 +0000 URL: https://git.openjdk.org/leyden/commit/55898922628a7fb1aef3ff6727a612baac3f6b1a 8343074: test/jdk/com/sun/net/httpserver/docs/test1/largefile.txt could be generated Reviewed-by: dfuchs, jpai ! test/jdk/com/sun/net/httpserver/SelCacheTest.java ! test/jdk/com/sun/net/httpserver/Test1.java ! test/jdk/com/sun/net/httpserver/Test12.java ! test/jdk/com/sun/net/httpserver/Test13.java ! test/jdk/com/sun/net/httpserver/Test9.java ! test/jdk/com/sun/net/httpserver/Test9a.java ! test/jdk/com/sun/net/httpserver/TestLogging.java - test/jdk/com/sun/net/httpserver/docs/test1/largefile.txt - test/jdk/com/sun/net/httpserver/docs/test1/smallfile.txt ! test/jdk/java/net/httpclient/http2/BasicTest.java ! test/jdk/java/net/httpclient/http2/FixedThreadPoolTest.java ! test/jdk/java/net/httpclient/http2/ServerPush.java - test/jdk/java/net/httpclient/lib/jdk/httpclient/test/lib/common/TestUtil.java ! test/lib/jdk/test/lib/Asserts.java ! test/lib/jdk/test/lib/Utils.java Changeset: c9cadbd2 Branch: hermetic-java-runtime Author: Coleen Phillimore Date: 2025-02-10 12:44:30 +0000 URL: https://git.openjdk.org/leyden/commit/c9cadbd23fb13933b8968f283d27842cd35f8d6f 8346567: Make Class.getModifiers() non-native Reviewed-by: alanb, vlivanov, yzheng, dlong ! src/hotspot/share/c1/c1_Canonicalizer.cpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp ! src/hotspot/share/ci/ciKlass.hpp ! src/hotspot/share/classfile/classFileParser.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/vmIntrinsics.cpp ! src/hotspot/share/classfile/vmIntrinsics.hpp ! src/hotspot/share/jvmci/vmStructs_jvmci.cpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/oops/objArrayKlass.cpp ! src/hotspot/share/oops/typeArrayKlass.cpp ! src/hotspot/share/oops/typeArrayKlass.hpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/memnode.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/jvmtiEnv.cpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/jdk/internal/reflect/Reflection.java ! src/java.base/share/native/libjava/Class.c ! test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaType.java ! test/jdk/java/lang/reflect/AccessibleObject/ModuleSetAccessibleTest.java ! test/jdk/java/lang/reflect/AccessibleObject/TrySetAccessibleTest.java ! test/jdk/jdk/internal/reflect/Reflection/Filtering.java ! test/micro/org/openjdk/bench/java/lang/reflect/Clazz.java Changeset: f74c4dfe Branch: hermetic-java-runtime Author: Johan Sj?len Date: 2025-02-10 13:52:23 +0000 URL: https://git.openjdk.org/leyden/commit/f74c4dfe0b0c384a25f0b7a2330ba96d50b7fceb 8349580: Do not use address in MemTracker top level functions Reviewed-by: gziemski, stefank ! src/hotspot/os/posix/perfMemory_posix.cpp ! src/hotspot/os/windows/perfMemory_windows.cpp ! src/hotspot/share/nmt/memTracker.hpp ! src/hotspot/share/runtime/os.cpp Changeset: ab66c82c Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-10 15:51:23 +0000 URL: https://git.openjdk.org/leyden/commit/ab66c82ce9fdb5ee3fd7690f42b8ad4d78bf5e40 8349639: jfr/event/gc/detailed/TestShenandoahEvacuationInformationEvent.java fails to compile after JDK-8348610 Reviewed-by: mdoerr, wkemper ! test/jdk/jdk/jfr/event/gc/detailed/TestShenandoahEvacuationInformationEvent.java Changeset: 84b32cb6 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-10 18:05:27 +0000 URL: https://git.openjdk.org/leyden/commit/84b32cb61c3e04189eb811fa052747e21ca6aff1 8349178: runtime/jni/atExit/TestAtExit.java should be supported on static JDK Reviewed-by: dholmes ! make/test/JtregNativeHotspot.gmk ! test/hotspot/jtreg/runtime/jni/atExit/libatExit.c Changeset: b737f7fb Branch: hermetic-java-runtime Author: Jamil Nimeh Date: 2025-02-10 18:19:57 +0000 URL: https://git.openjdk.org/leyden/commit/b737f7fb3004e4e9c95fba95c6fcda70073ae00e 8349501: Relocate supporting classes in security/testlibrary to test/lib/jdk tree Reviewed-by: rhalade, weijun ! test/jdk/com/sun/security/auth/callback/TextCallbackHandler/Default.java ! test/jdk/java/security/KeyFactory/Failover.java ! test/jdk/java/security/KeyPairGenerator/Failover.java ! test/jdk/java/security/Provider/ChangeProviders.java ! test/jdk/java/security/Provider/GetInstance.java ! test/jdk/java/security/Provider/GetServiceRace.java ! test/jdk/java/security/Provider/RemoveProvider.java ! test/jdk/java/security/Security/NoInstalledProviders.java ! test/jdk/java/security/Security/SynchronizedAccess.java ! test/jdk/java/security/Security/removing/RemoveProviders.java ! test/jdk/java/security/cert/CertPathValidator/OCSP/GetAndPostTests.java ! test/jdk/java/security/cert/CertPathValidator/OCSP/OCSPTimeout.java ! test/jdk/java/security/cert/CertPathValidator/crlDP/CheckAllCRLs.java ! test/jdk/java/security/cert/CertPathValidator/trustAnchor/ValWithAnchorByName.java ! test/jdk/javax/crypto/EncryptedPrivateKeyInfo/GetKeySpecException.java ! test/jdk/javax/crypto/JceSecurity/SunJCE_BC_LoadOrdering.java ! test/jdk/javax/net/ssl/Stapling/HttpsUrlConnClient.java ! test/jdk/javax/net/ssl/Stapling/SSLEngineWithStapling.java ! test/jdk/javax/net/ssl/Stapling/SSLSocketWithStapling.java ! test/jdk/javax/net/ssl/Stapling/StapleEnableProps.java ! test/jdk/sun/security/ec/TestEC.java ! test/jdk/sun/security/pkcs11/ec/ReadCertificates.java ! test/jdk/sun/security/pkcs11/ec/ReadPKCS12.java ! test/jdk/sun/security/pkcs11/ec/TestECDH.java ! test/jdk/sun/security/pkcs11/ec/TestECDH2.java ! test/jdk/sun/security/pkcs11/ec/TestECDSA.java ! test/jdk/sun/security/pkcs11/ec/TestECDSA2.java ! test/jdk/sun/security/pkcs11/rsa/TestCACerts.java ! test/jdk/sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java ! test/jdk/sun/security/pkcs12/GetSetEntryTest.java ! test/jdk/sun/security/provider/certpath/OCSP/OCSPNoContentLength.java ! test/jdk/sun/security/provider/certpath/PKIXCertComparator/Order.java ! test/jdk/sun/security/ssl/Stapling/StatusResponseManager.java ! test/jdk/sun/security/ssl/Stapling/java.base/sun/security/ssl/StatusResponseManagerTests.java ! test/jdk/sun/security/tools/keytool/KeyToolTest.java ! test/jdk/sun/security/tools/keytool/NssTest.java ! test/jdk/sun/security/x509/URICertStore/AIACertTimeout.java = test/lib/jdk/test/lib/security/CertificateBuilder.java = test/lib/jdk/test/lib/security/HumanInputStream.java = test/lib/jdk/test/lib/security/Providers.java = test/lib/jdk/test/lib/security/ProvidersSnapshot.java = test/lib/jdk/test/lib/security/SimpleOCSPServer.java Changeset: f11a7377 Branch: hermetic-java-runtime Author: Joe Darcy Date: 2025-02-10 18:27:05 +0000 URL: https://git.openjdk.org/leyden/commit/f11a737707414f35738b630e0ffb482431259b0c 8349475: Test tools/javac/api/TestJavacTaskWithWarning.java writes files in src dir Reviewed-by: jlahoda, liach, jpai ! test/langtools/tools/javac/api/TestJavacTaskWithWarning.java Changeset: 527489c0 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-10 20:19:48 +0000 URL: https://git.openjdk.org/leyden/commit/527489c06d827f5d08a8053bedcd26db4608c9f0 8349284: Make libExplicitAttach work on static JDK Reviewed-by: alanb, dholmes ! make/test/JtregNativeJdk.gmk ! test/jdk/java/lang/Thread/jni/AttachCurrentThread/libExplicitAttach.c Changeset: df654a9f Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-10 20:52:20 +0000 URL: https://git.openjdk.org/leyden/commit/df654a9f581ed9e43e3f329bb01204ac2fb9f509 8349752: Tier1 build failure caused by JDK-8349178 Reviewed-by: dholmes ! make/test/JtregNativeHotspot.gmk Changeset: 41bdc47d Branch: hermetic-java-runtime Author: Daniel Gredler Committer: Phil Race Date: 2025-02-11 00:39:09 +0000 URL: https://git.openjdk.org/leyden/commit/41bdc47d71340e5d7f4317a5040521868d4c4314 8208377: Soft hyphens render if not using TextLayout Reviewed-by: achung, prr ! src/java.desktop/macosx/classes/sun/font/CCharToGlyphMapper.java ! src/java.desktop/share/classes/sun/font/CMap.java ! src/java.desktop/share/classes/sun/font/FontUtilities.java ! src/java.desktop/share/classes/sun/font/TrueTypeGlyphMapper.java ! src/java.desktop/share/classes/sun/font/Type1GlyphMapper.java + test/jdk/java/awt/font/TextLayout/FormatCharAdvanceTest.java Changeset: 1a8212e1 Branch: hermetic-java-runtime Author: Richard Reingruber Date: 2025-02-11 07:45:55 +0000 URL: https://git.openjdk.org/leyden/commit/1a8212e1018744b360df310e85fc29f8c41f5072 8348678: [PPC64] C2: unaligned vector load/store is ok 8343906: test2 of compiler/c2/TestCastX2NotProcessedIGVN.java fails on some platforms Reviewed-by: mdoerr, amitkumar ! src/hotspot/cpu/ppc/matcher_ppc.hpp ! src/hotspot/cpu/ppc/vm_version_ppc.cpp ! test/hotspot/jtreg/compiler/c2/TestCastX2NotProcessedIGVN.java Changeset: 8e858294 Branch: hermetic-java-runtime Author: Thomas Schatzl Date: 2025-02-11 09:52:38 +0000 URL: https://git.openjdk.org/leyden/commit/8e8582949669d5f3dcb68886ccb6a719393d1a9e 8349213: G1: Clearing bitmaps during collection set merging not claimed by region Reviewed-by: iwalulya, ayang ! src/hotspot/share/gc/g1/g1RemSet.cpp Changeset: 964dd18f Branch: hermetic-java-runtime Author: Magnus Ihse Bursie Date: 2025-02-11 10:55:47 +0000 URL: https://git.openjdk.org/leyden/commit/964dd18fd2ba998e5c1efed48e15e516b0c22b19 8349515: [REDO] Framework for tracing makefile inclusion and parsing Reviewed-by: erikj ! .github/actions/get-gtest/action.yml ! .github/actions/get-jtreg/action.yml ! Makefile ! make/Bundles.gmk ! make/CompileCommands.gmk ! make/CompileDemos.gmk ! make/CompileInterimLangtools.gmk ! make/CompileJavaModules.gmk ! make/CompileModuleTools.gmk ! make/CompileToolsHotspot.gmk ! make/CompileToolsJdk.gmk ! make/CopyImportModules.gmk ! make/CopyInterimTZDB.gmk ! make/Coverage.gmk ! make/CreateJmods.gmk ! make/Docs.gmk ! make/Doctor.gmk ! make/ExplodedImageOptimize.gmk ! make/GenerateLinkOptData.gmk ! make/GenerateModuleSummary.gmk ! make/Global.gmk ! make/GraalBuilderImage.gmk ! make/Hsdis.gmk ! make/Images.gmk ! make/Init.gmk ! make/InitSupport.gmk ! make/InterimImage.gmk ! make/JrtfsJar.gmk ! make/MacBundles.gmk ! make/Main.gmk ! make/MainSupport.gmk ! make/ModuleTools.gmk ! make/ModuleWrapper.gmk ! make/PreInit.gmk ! make/PreInitSupport.gmk ! make/ReleaseFile.gmk ! make/RunTests.gmk ! make/RunTestsPrebuilt.gmk + make/RunTestsPrebuiltFindTests.gmk ! make/SourceRevision.gmk ! make/StaticLibs.gmk ! make/StaticLibsImage.gmk ! make/TestImage.gmk ! make/ToolsHotspot.gmk ! make/ToolsJdk.gmk ! make/ToolsLangtools.gmk ! make/UpdateBuildDocs.gmk ! make/UpdateSleefSource.gmk ! make/UpdateX11Wrappers.gmk ! make/ZipSecurity.gmk ! make/ZipSource.gmk ! make/common/CopyFiles.gmk ! make/common/DebugInfoUtils.gmk ! make/common/Execute.gmk ! make/common/FileUtils.gmk ! make/common/FindTests.gmk ! make/common/JarArchive.gmk ! make/common/JavaCompilation.gmk ! make/common/JdkNativeCompilation.gmk ! make/common/LogUtils.gmk ! make/common/MakeBase.gmk + make/common/MakeFileEnd.gmk + make/common/MakeFileStart.gmk ! make/common/MakeIO.gmk + make/common/MakeIncludeEnd.gmk + make/common/MakeIncludeStart.gmk + make/common/MakeSnippetEnd.gmk + make/common/MakeSnippetStart.gmk ! make/common/Modules.gmk ! make/common/NativeCompilation.gmk ! make/common/ProcessMarkdown.gmk ! make/common/TestFilesCompilation.gmk ! make/common/TextFileProcessing.gmk ! make/common/Utils.gmk ! make/common/ZipArchive.gmk ! make/common/modules/CopyCommon.gmk ! make/common/modules/GendataCommon.gmk ! make/common/modules/GensrcCommon.gmk ! make/common/modules/GensrcModuleInfo.gmk ! make/common/modules/GensrcProperties.gmk ! make/common/modules/LauncherCommon.gmk ! make/common/modules/LibCommon.gmk ! make/common/native/CompileFile.gmk ! make/common/native/DebugSymbols.gmk ! make/common/native/Flags.gmk ! make/common/native/Link.gmk ! make/common/native/LinkMicrosoft.gmk ! make/common/native/Paths.gmk ! make/hotspot/CopyToExplodedJdk.gmk ! make/hotspot/HotspotCommon.gmk ! make/hotspot/gensrc/GenerateSources.gmk ! make/hotspot/gensrc/GensrcAdlc.gmk ! make/hotspot/gensrc/GensrcDtrace.gmk ! make/hotspot/gensrc/GensrcJfr.gmk ! make/hotspot/gensrc/GensrcJvmti.gmk ! make/hotspot/lib/CompileGtest.gmk ! make/hotspot/lib/CompileJvm.gmk ! make/hotspot/lib/CompileLibraries.gmk ! make/hotspot/lib/JvmFeatures.gmk ! make/hotspot/lib/JvmFlags.gmk ! make/hotspot/lib/JvmOverrideFiles.gmk ! make/hotspot/test/GtestImage.gmk ! make/ide/eclipse/CreateWorkspace.gmk ! make/ide/idea/jdk/IdeaGenConfig.gmk ! make/ide/visualstudio/hotspot/CreateVSProject.gmk ! make/ide/vscode/hotspot/CreateVSCodeProject.gmk ! make/ide/xcode/hotspot/CreateXcodeProject.gmk ! make/modules/java.base/Copy.gmk ! make/modules/java.base/Gendata.gmk ! make/modules/java.base/Gensrc.gmk ! make/modules/java.base/Java.gmk ! make/modules/java.base/Launcher.gmk ! make/modules/java.base/Lib.gmk ! make/modules/java.base/gendata/GendataBlockedCerts.gmk ! make/modules/java.base/gendata/GendataBreakIterator.gmk ! make/modules/java.base/gendata/GendataCryptoPolicy.gmk ! make/modules/java.base/gendata/GendataPublicSuffixList.gmk ! make/modules/java.base/gendata/GendataTZDB.gmk ! make/modules/java.base/gensrc/GensrcBuffer.gmk ! make/modules/java.base/gensrc/GensrcCharacterData.gmk ! make/modules/java.base/gensrc/GensrcCharsetCoder.gmk ! make/modules/java.base/gensrc/GensrcCharsetMapping.gmk ! make/modules/java.base/gensrc/GensrcExceptions.gmk ! make/modules/java.base/gensrc/GensrcMisc.gmk ! make/modules/java.base/gensrc/GensrcModuleLoaderMap.gmk ! make/modules/java.base/gensrc/GensrcRegex.gmk ! make/modules/java.base/gensrc/GensrcScopedMemoryAccess.gmk ! make/modules/java.base/gensrc/GensrcVarHandles.gmk ! make/modules/java.base/lib/CoreLibraries.gmk ! make/modules/java.compiler/Java.gmk ! make/modules/java.datatransfer/Java.gmk ! make/modules/java.desktop/Copy.gmk ! make/modules/java.desktop/Gendata.gmk ! make/modules/java.desktop/Gensrc.gmk ! make/modules/java.desktop/Java.gmk ! make/modules/java.desktop/Lib.gmk ! make/modules/java.desktop/gendata/GendataFontConfig.gmk ! make/modules/java.desktop/gendata/GendataHtml32dtd.gmk ! make/modules/java.desktop/gensrc/GensrcIcons.gmk ! make/modules/java.desktop/gensrc/GensrcSwing.gmk ! make/modules/java.desktop/gensrc/GensrcX11Wrappers.gmk ! make/modules/java.desktop/lib/AwtLibraries.gmk ! make/modules/java.desktop/lib/ClientLibraries.gmk ! make/modules/java.instrument/Java.gmk ! make/modules/java.instrument/Lib.gmk ! make/modules/java.logging/Copy.gmk ! make/modules/java.logging/Gensrc.gmk ! make/modules/java.logging/Java.gmk ! make/modules/java.management.rmi/Java.gmk ! make/modules/java.management/Java.gmk ! make/modules/java.management/Lib.gmk ! make/modules/java.naming/Java.gmk ! make/modules/java.prefs/Java.gmk ! make/modules/java.prefs/Lib.gmk ! make/modules/java.rmi/Java.gmk ! make/modules/java.rmi/Launcher.gmk ! make/modules/java.rmi/Lib.gmk ! make/modules/java.scripting/Java.gmk ! make/modules/java.scripting/Launcher.gmk ! make/modules/java.security.jgss/Java.gmk ! make/modules/java.security.jgss/Launcher.gmk ! make/modules/java.security.jgss/Lib.gmk ! make/modules/java.security.sasl/Java.gmk ! make/modules/java.smartcardio/Java.gmk ! make/modules/java.smartcardio/Lib.gmk ! make/modules/java.sql.rowset/Java.gmk ! make/modules/java.sql/Java.gmk ! make/modules/java.transaction.xa/Java.gmk ! make/modules/java.xml.crypto/Java.gmk ! make/modules/java.xml/Copy.gmk ! make/modules/java.xml/Java.gmk ! make/modules/jdk.accessibility/Copy.gmk ! make/modules/jdk.accessibility/Java.gmk ! make/modules/jdk.accessibility/Launcher.gmk ! make/modules/jdk.accessibility/Lib.gmk ! make/modules/jdk.attach/Lib.gmk ! make/modules/jdk.charsets/Gensrc.gmk ! make/modules/jdk.charsets/Java.gmk ! make/modules/jdk.compiler/Gendata.gmk ! make/modules/jdk.compiler/Gensrc.gmk ! make/modules/jdk.compiler/Java.gmk ! make/modules/jdk.compiler/Launcher.gmk ! make/modules/jdk.crypto.cryptoki/Java.gmk ! make/modules/jdk.crypto.cryptoki/Lib.gmk ! make/modules/jdk.crypto.mscapi/Java.gmk ! make/modules/jdk.crypto.mscapi/Lib.gmk ! make/modules/jdk.dev/Java.gmk ! make/modules/jdk.dynalink/Java.gmk ! make/modules/jdk.editpad/Java.gmk ! make/modules/jdk.hotspot.agent/Gensrc.gmk ! make/modules/jdk.hotspot.agent/Java.gmk ! make/modules/jdk.hotspot.agent/Launcher.gmk ! make/modules/jdk.hotspot.agent/Lib.gmk ! make/modules/jdk.httpserver/Gensrc.gmk ! make/modules/jdk.httpserver/Java.gmk ! make/modules/jdk.httpserver/Jmod.gmk ! make/modules/jdk.httpserver/Launcher.gmk ! make/modules/jdk.incubator.vector/Java.gmk ! make/modules/jdk.incubator.vector/Lib.gmk ! make/modules/jdk.internal.jvmstat/Java.gmk ! make/modules/jdk.internal.le/Java.gmk ! make/modules/jdk.internal.md/Java.gmk ! make/modules/jdk.internal.opt/Java.gmk ! make/modules/jdk.internal.vm.ci/Java.gmk ! make/modules/jdk.jartool/Gensrc.gmk ! make/modules/jdk.jartool/Java.gmk ! make/modules/jdk.jartool/Jmod.gmk ! make/modules/jdk.jartool/Launcher.gmk ! make/modules/jdk.javadoc/Copy.gmk ! make/modules/jdk.javadoc/Gendata.gmk ! make/modules/jdk.javadoc/Gensrc.gmk ! make/modules/jdk.javadoc/Java.gmk ! make/modules/jdk.javadoc/Launcher.gmk ! make/modules/jdk.jcmd/Java.gmk ! make/modules/jdk.jcmd/Launcher.gmk ! make/modules/jdk.jconsole/Java.gmk ! make/modules/jdk.jconsole/Launcher.gmk ! make/modules/jdk.jdeps/Gensrc.gmk ! make/modules/jdk.jdeps/Java.gmk ! make/modules/jdk.jdeps/Launcher.gmk ! make/modules/jdk.jdi/Gensrc.gmk ! make/modules/jdk.jdi/Java.gmk ! make/modules/jdk.jdi/Launcher.gmk ! make/modules/jdk.jdi/Lib.gmk ! make/modules/jdk.jdwp.agent/Copy.gmk ! make/modules/jdk.jdwp.agent/Lib.gmk ! make/modules/jdk.jfr/Copy.gmk ! make/modules/jdk.jfr/Gendata.gmk ! make/modules/jdk.jfr/Java.gmk ! make/modules/jdk.jfr/Jmod.gmk ! make/modules/jdk.jfr/Launcher.gmk ! make/modules/jdk.jlink/Gensrc.gmk ! make/modules/jdk.jlink/Launcher.gmk ! make/modules/jdk.jpackage/Gensrc.gmk ! make/modules/jdk.jpackage/Java.gmk ! make/modules/jdk.jpackage/Jmod.gmk ! make/modules/jdk.jpackage/Launcher.gmk ! make/modules/jdk.jpackage/Lib.gmk ! make/modules/jdk.jshell/Gensrc.gmk ! make/modules/jdk.jshell/Java.gmk ! make/modules/jdk.jshell/Jmod.gmk ! make/modules/jdk.jshell/Launcher.gmk ! make/modules/jdk.jstatd/Jmod.gmk ! make/modules/jdk.jstatd/Launcher.gmk ! make/modules/jdk.localedata/Gensrc.gmk ! make/modules/jdk.localedata/Java.gmk ! make/modules/jdk.management.agent/Copy.gmk ! make/modules/jdk.management.agent/Gensrc.gmk ! make/modules/jdk.management.agent/Lib.gmk ! make/modules/jdk.management/Java.gmk ! make/modules/jdk.management/Lib.gmk ! make/modules/jdk.net/Lib.gmk ! make/modules/jdk.sctp/Java.gmk ! make/modules/jdk.sctp/Lib.gmk ! make/modules/jdk.security.auth/Java.gmk ! make/modules/jdk.security.auth/Lib.gmk ! make/modules/sun.charsets/Java.gmk ! make/test/BuildFailureHandler.gmk ! make/test/BuildJtregTestThreadFactory.gmk ! make/test/BuildMicrobenchmark.gmk ! make/test/BuildTestLib.gmk ! make/test/BuildTestLibNative.gmk ! make/test/JtregNativeHotspot.gmk ! make/test/JtregNativeJdk.gmk ! make/test/JtregNativeLibTest.gmk ! test/make/TestCompileCommands.gmk ! test/make/TestCopyFiles.gmk ! test/make/TestFixDepsFile.gmk ! test/make/TestIdea.gmk ! test/make/TestJavaCompilation.gmk ! test/make/TestMake.gmk ! test/make/TestMakeBase.gmk ! test/make/UtilsForTests.gmk Changeset: 5ee44c16 Branch: hermetic-java-runtime Author: Daniel Fuchs Date: 2025-02-11 12:10:05 +0000 URL: https://git.openjdk.org/leyden/commit/5ee44c1688fa6bfbf31d506696eefbf61de0e768 8349662: SSLTube SSLSubscriptionWrapper has potential races when switching subscriptions Reviewed-by: jpai ! src/java.net.http/share/classes/jdk/internal/net/http/common/SSLTube.java ! test/jdk/java/net/httpclient/CookieHeaderTest.java ! test/jdk/java/net/httpclient/DigestEchoClient.java Changeset: 545d19f1 Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-11 12:38:19 +0000 URL: https://git.openjdk.org/leyden/commit/545d19f1fa102d35908528520dc19a7d16000d63 8349771: Replace usages of -mx and -ms in some monitor tests Reviewed-by: jpai, stefank, dholmes ! test/hotspot/jtreg/runtime/Monitor/StressWrapper_TestRecursiveLocking_36M.java ! test/hotspot/jtreg/runtime/Monitor/TestRecursiveLocking.java Changeset: ee079fdb Branch: hermetic-java-runtime Author: Tobias Hartmann Date: 2025-02-11 13:57:45 +0000 URL: https://git.openjdk.org/leyden/commit/ee079fdbf1c513a4c57ef86a803eb0add651c539 8349820: Temporarily increase MemLimit for tests until JDK-8349772 and JDK-8337821 are fixed Reviewed-by: rcastanedalo, epeter ! test/hotspot/jtreg/vmTestbase/jit/t/t105/t105.java ! test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/compiler/i2c_c2i/Test.java Changeset: a1bcda24 Branch: hermetic-java-runtime Author: Mohamed Issa Committer: Sandhya Viswanathan Date: 2025-02-11 15:33:30 +0000 URL: https://git.openjdk.org/leyden/commit/a1bcda247617a839cd797bdd8bd3bf3216dff8a8 8349579: jsvml.dll incorrect RDATA SEGMENT specification Reviewed-by: sviswanathan, jbhateja ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_acos_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_asin_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_atan2_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_atan_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_cbrt_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_cos_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_cosh_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_exp_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_expm1_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_hypot_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_log10_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_log1p_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_log_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_pow_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_sin_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_sinh_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_tan_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_tanh_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_acos_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_asin_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_atan2_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_atan_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_cbrt_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_cos_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_cosh_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_exp_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_expm1_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_hypot_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_log10_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_log1p_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_log_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_pow_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_sin_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_sinh_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_tan_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_tanh_windows_x86.S Changeset: 32dc41c9 Branch: hermetic-java-runtime Author: Chen Liang Date: 2025-02-11 16:21:23 +0000 URL: https://git.openjdk.org/leyden/commit/32dc41c9f782d0c8829e1ef29846d236b3cf0fe2 8349624: Validation for slot missing in CodeBuilder local variable instructions Reviewed-by: asotona ! src/java.base/share/classes/jdk/internal/classfile/impl/DirectCodeBuilder.java ! test/jdk/jdk/classfile/InstructionValidationTest.java Changeset: 64281653 Branch: hermetic-java-runtime Author: Naoto Sato Date: 2025-02-11 17:20:50 +0000 URL: https://git.openjdk.org/leyden/commit/642816538fbaa5b74c6beb8a14d1738cdde28c10 8349254: Disable "best-fit" mapping on Windows environment variables Reviewed-by: jlu, jpai ! src/java.base/share/native/libjli/args.c ! src/java.base/windows/native/libjava/ProcessEnvironment_md.c ! test/jdk/tools/launcher/DisableBestFitMappingTest.java Changeset: 7d2a3c84 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-11 11:01:54 +0000 URL: https://git.openjdk.org/leyden/commit/7d2a3c841b029206ee959a9b5ddfc4bbcd90f1b0 Merge branch 'master' into hermetic-java-runtime ! make/Images.gmk ! make/Main.gmk ! make/modules/java.base/lib/CoreLibraries.gmk ! src/hotspot/share/runtime/os.cpp ! make/Images.gmk ! make/Main.gmk ! make/modules/java.base/lib/CoreLibraries.gmk ! src/hotspot/share/runtime/os.cpp From duke at openjdk.org Tue Feb 11 19:15:53 2025 From: duke at openjdk.org (duke) Date: Tue, 11 Feb 2025 19:15:53 GMT Subject: git: openjdk/leyden: hermetic-java-runtime: Remove make/StaticLink.gmk and 'static-java-image' target. Message-ID: <64dcc234-5563-4ebe-8730-882b6fea84dc@openjdk.org> Changeset: 7951b5fb Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-11 11:12:24 +0000 URL: https://git.openjdk.org/leyden/commit/7951b5fb6c22c78a4735c52a41ccf1b7e1c95d02 Remove make/StaticLink.gmk and 'static-java-image' target. ! make/Main.gmk - make/StaticLink.gmk ! make/autoconf/flags-ldflags.m4 ! make/autoconf/spec.gmk.template From vlivanov at openjdk.org Tue Feb 11 19:16:28 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Tue, 11 Feb 2025 19:16:28 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v4] In-Reply-To: References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: On Mon, 10 Feb 2025 16:34:02 GMT, Aleksey Shipilev wrote: >> Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains four additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349539-allow-hidden > - Merge branch 'premain' into JDK-8349539-allow-hidden > - Moving the check around > - Fix Looks good. ------------- Marked as reviewed by vlivanov (Committer). PR Review: https://git.openjdk.org/leyden/pull/33#pullrequestreview-2609783931 From shade at openjdk.org Tue Feb 11 19:22:28 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 19:22:28 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v4] In-Reply-To: References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: On Mon, 10 Feb 2025 16:34:02 GMT, Aleksey Shipilev wrote: >> Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains four additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349539-allow-hidden > - Merge branch 'premain' into JDK-8349539-allow-hidden > - Moving the check around > - Fix Thanks! ------------- PR Comment: https://git.openjdk.org/leyden/pull/33#issuecomment-2651845541 From duke at openjdk.org Tue Feb 11 19:22:28 2025 From: duke at openjdk.org (duke) Date: Tue, 11 Feb 2025 19:22:28 GMT Subject: RFR: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses [v4] In-Reply-To: References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: On Mon, 10 Feb 2025 16:34:02 GMT, Aleksey Shipilev wrote: >> Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains four additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349539-allow-hidden > - Merge branch 'premain' into JDK-8349539-allow-hidden > - Moving the check around > - Fix @shipilev Your change (at version b4ec97aca8cbc2ef33fdcf058b7ed2daad65c69c) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/33#issuecomment-2651848026 From kvn at openjdk.org Tue Feb 11 19:53:23 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Tue, 11 Feb 2025 19:53:23 GMT Subject: RFR: 8349814: [leyden] Avoid uncommon traps in preload code [v2] In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 16:39:39 GMT, Aleksey Shipilev wrote: >> Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. >> >> Additional testing: >> - [x] Ad-hoc perf tests (see comment below) >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349814-preload-avoid-uncommon-traps > - Comment > - Fix Good. ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/38#pullrequestreview-2609878204 From kvn at openjdk.org Tue Feb 11 19:56:28 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Tue, 11 Feb 2025 19:56:28 GMT Subject: git: openjdk/leyden: premain: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses Message-ID: <9414e27f-4b12-4002-88f4-68f2010960c9@openjdk.org> Changeset: 242a98c7 Branch: premain Author: Aleksey Shipilev Committer: Vladimir Kozlov Date: 2025-02-11 19:54:07 +0000 URL: https://git.openjdk.org/leyden/commit/242a98c781940bfe9380cf653e150a6b79bd868a 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses Reviewed-by: vlivanov, kvn ! src/hotspot/share/code/SCCache.cpp From shade at openjdk.org Tue Feb 11 19:57:25 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 19:57:25 GMT Subject: Integrated: 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses In-Reply-To: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> References: <7KMzeB5idVao3acS1p_HOh2FYVgdtXZPZ81hRFHsazk=.cf6be4bf-0324-42de-b726-056bd9e7665e@github.com> Message-ID: On Thu, 6 Feb 2025 11:52:25 GMT, Aleksey Shipilev wrote: > Studying the bailout reasons for JavacBenchApp, I notices the majority of nmethod store bailouts are due to referencing the hidden klasses. Those checks seem to be from the initial commit. I wonder if we can actually skip hidden klass checks, now that we archive lots of those since invokedynamic AOT was implemented. This pull request has now been integrated. Changeset: 242a98c7 Author: Aleksey Shipilev Committer: Vladimir Kozlov URL: https://git.openjdk.org/leyden/commit/242a98c781940bfe9380cf653e150a6b79bd868a Stats: 10 lines in 1 file changed: 5 ins; 4 del; 1 mod 8349539: [leyden] Allow dumping nmethods that reference archived hidden klasses Reviewed-by: vlivanov, kvn ------------- PR: https://git.openjdk.org/leyden/pull/33 From shade at openjdk.org Tue Feb 11 20:02:25 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Tue, 11 Feb 2025 20:02:25 GMT Subject: RFR: 8349814: [leyden] Avoid uncommon traps in preload code [v2] In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 16:39:39 GMT, Aleksey Shipilev wrote: >> Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. >> >> Additional testing: >> - [x] Ad-hoc perf tests (see comment below) >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349814-preload-avoid-uncommon-traps > - Comment > - Fix @iwanowww, is this what you had in mind when we talked at our last meeting? ------------- PR Comment: https://git.openjdk.org/leyden/pull/38#issuecomment-2651941182 From iklam at openjdk.org Tue Feb 11 20:20:23 2025 From: iklam at openjdk.org (Ioi Lam) Date: Tue, 11 Feb 2025 20:20:23 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v2] In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 16:36:04 GMT, Aleksey Shipilev wrote: >> It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. >> >> We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. >> >> I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. >> >> Additional testing: >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains two additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349713-mmap-sccache > - Fix I think this looks fine. The change is small, so we can update or remove it when migrating the SCCache into CDS. @vnkozlov what do you think? ------------- Marked as reviewed by iklam (Committer). PR Review: https://git.openjdk.org/leyden/pull/34#pullrequestreview-2609933629 From kvn at openjdk.org Tue Feb 11 20:35:20 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Tue, 11 Feb 2025 20:35:20 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v2] In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 20:17:19 GMT, Ioi Lam wrote: > I think this looks fine. The change is small, so we can update or remove it when migrating the SCCache into CDS. > > @vnkozlov what do you think? Yes, that is the plan. ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2652005897 From vlivanov at openjdk.org Tue Feb 11 20:55:26 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Tue, 11 Feb 2025 20:55:26 GMT Subject: RFR: 8349814: [leyden] Avoid uncommon traps in preload code [v2] In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 16:39:39 GMT, Aleksey Shipilev wrote: >> Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. >> >> Additional testing: >> - [x] Ad-hoc perf tests (see comment below) >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349814-preload-avoid-uncommon-traps > - Comment > - Fix src/hotspot/share/compiler/precompiler.cpp line 235: > 233: > 234: { > 235: // For preload code, avoid any uncommon traps. Why don't you instrument `Compile::too_many_traps()` instead? (Check for compilation reason and unconditionally return true when compiling code for preloading.) Also, it would be useful to make new logic conditional (controlled by a diagnostic flag). It would make it easier to measure deoptimization-induced performance effects at runtime. src/hotspot/share/runtime/deoptimization.cpp line 2130: > 2128: tm->name_and_sig_as_C_string(), trap_bci, nm->compiler_name()); > 2129: > 2130: if (nm->preloaded() && (action != Action_none)) { At some point, I added SCC-related info to `TraceDeoptimization` output [1], but it turns out I didn't upstream it. (I had a script which parsed the log and aggregated information about deopts in archived code.) Maybe it's better to upstream it instead of introducing such adhoc logging. [1] https://github.com/iwanowww/leyden/blame/premain-precompile/src/hotspot/share/runtime/deoptimization.cpp#L2151 ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/38#discussion_r1951247171 PR Review Comment: https://git.openjdk.org/leyden/pull/38#discussion_r1951576538 From vlivanov at openjdk.org Tue Feb 11 20:55:26 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Tue, 11 Feb 2025 20:55:26 GMT Subject: RFR: 8349814: [leyden] Avoid uncommon traps in preload code [v2] In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 20:44:41 GMT, Vladimir Ivanov wrote: >> Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: >> >> - Merge branch 'premain' into JDK-8349814-preload-avoid-uncommon-traps >> - Comment >> - Fix > > src/hotspot/share/runtime/deoptimization.cpp line 2130: > >> 2128: tm->name_and_sig_as_C_string(), trap_bci, nm->compiler_name()); >> 2129: >> 2130: if (nm->preloaded() && (action != Action_none)) { > > At some point, I added SCC-related info to `TraceDeoptimization` output [1], but it turns out I didn't upstream it. (I had a script which parsed the log and aggregated information about deopts in archived code.) > > Maybe it's better to upstream it instead of introducing such adhoc logging. > > [1] https://github.com/iwanowww/leyden/blame/premain-precompile/src/hotspot/share/runtime/deoptimization.cpp#L2151 But speaking of monitoring for uncommon traps in generated code: the ultimate goal may be to completely eliminate uncommon traps in preloaded code. In that respect, it's more interesting to monitor for all uncommon traps issued during compilation rather than those hit at runtime. For C2 it's `GraphKit::uncommon_trap()`, so I suggest to move the code there. Also, additional information about compilation (id) and location (jvms info) is useful to pin down the root cause. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/38#discussion_r1951585460 From asmehra at openjdk.org Tue Feb 11 22:20:32 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Tue, 11 Feb 2025 22:20:32 GMT Subject: RFR: Store AOT code in cached code region of AOT cache Message-ID: This PR stores AOT code in the cached code region of AOT Cache. Some things worth pointing out: 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. 3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address. 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". ------------- Commit messages: - Store AOT code in cached code region of AOT cache Changes: https://git.openjdk.org/leyden/pull/39/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=00 Stats: 321 lines in 12 files changed: 34 ins; 186 del; 101 mod Patch: https://git.openjdk.org/leyden/pull/39.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/39/head:pull/39 PR: https://git.openjdk.org/leyden/pull/39 From asmehra at openjdk.org Tue Feb 11 22:58:18 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Tue, 11 Feb 2025 22:58:18 GMT Subject: RFR: Store AOT code in cached code region of AOT cache In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 22:15:24 GMT, Ashutosh Mehra wrote: > I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address. hmm, now I am not sure if this is really required. We can map the cached code region to CodeCache and still use it in SCCache. ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2652245932 From asmehra at openjdk.org Tue Feb 11 23:19:14 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Tue, 11 Feb 2025 23:19:14 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v2] In-Reply-To: References: Message-ID: > This PR stores AOT code in the cached code region of AOT Cache. > > Some things worth pointing out: > 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. > 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. > 3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address. > 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: Restore code that maps cached code region to CodeCache Signed-off-by: Ashutosh Mehra ------------- Changes: - all: https://git.openjdk.org/leyden/pull/39/files - new: https://git.openjdk.org/leyden/pull/39/files/7de793f5..029cefc0 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=01 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=00-01 Stats: 29 lines in 3 files changed: 19 ins; 9 del; 1 mod Patch: https://git.openjdk.org/leyden/pull/39.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/39/head:pull/39 PR: https://git.openjdk.org/leyden/pull/39 From kvn at openjdk.org Tue Feb 11 23:25:27 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Tue, 11 Feb 2025 23:25:27 GMT Subject: RFR: Store AOT code in cached code region of AOT cache In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 22:55:41 GMT, Ashutosh Mehra wrote: > > I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address. > > hmm, now I am not sure if this is really required. We can map the cached code region to CodeCache and still use it in SCCache. Can we leave this part of code but not use it - map to random address for these changes? ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2652283110 From kvn at openjdk.org Tue Feb 11 23:30:30 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Tue, 11 Feb 2025 23:30:30 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v2] In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 23:19:14 GMT, Ashutosh Mehra wrote: >> This PR stores AOT code in the cached code region of AOT Cache. >> >> Some things worth pointing out: >> 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. >> 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. >> ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ >> 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". > > Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: > > Restore code that maps cached code region to CodeCache > > Signed-off-by: Ashutosh Mehra It was prepared for "preload" AOT nmethods so we can use them immediately (after your work on caching whole nmethod). Normal AOT nmethods (tier1-4) may live in separate space until they are requested - we can't publish (patch) them until corresponding classes are initialized. ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2652289675 From asmehra at openjdk.org Tue Feb 11 23:59:19 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Tue, 11 Feb 2025 23:59:19 GMT Subject: RFR: Store AOT code in cached code region of AOT cache In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 23:22:22 GMT, Vladimir Kozlov wrote: > Can we leave this part of code but not use it - map to random address for these changes? Yes, we can do that. It would also mean the ReservedSpace created by CodeCache would just be a lot bigger now by the size of the cached code region. But again it would only affect the virtual memory, as we are not mapping anything to that space. And hopefully this would just be temporary. ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2652321341 From asmehra at openjdk.org Wed Feb 12 00:07:43 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 00:07:43 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v3] In-Reply-To: References: Message-ID: > This PR stores AOT code in the cached code region of AOT Cache. > > Some things worth pointing out: > 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. > 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. > ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ > 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: Map cached code region separately from the CodeCache Signed-off-by: Ashutosh Mehra ------------- Changes: - all: https://git.openjdk.org/leyden/pull/39/files - new: https://git.openjdk.org/leyden/pull/39/files/029cefc0..3c5f0152 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=02 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=01-02 Stats: 10 lines in 1 file changed: 9 ins; 0 del; 1 mod Patch: https://git.openjdk.org/leyden/pull/39.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/39/head:pull/39 PR: https://git.openjdk.org/leyden/pull/39 From asmehra at openjdk.org Wed Feb 12 00:07:44 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 00:07:44 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v2] In-Reply-To: References: Message-ID: <4ZQ-bEV-v3gWD9_QkFBsBsHCjCufDBE3irgL-6yS3VI=.944e100e-30c2-4006-9adf-579a63931be1@github.com> On Tue, 11 Feb 2025 23:27:54 GMT, Vladimir Kozlov wrote: >> Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: >> >> Restore code that maps cached code region to CodeCache >> >> Signed-off-by: Ashutosh Mehra > > It was prepared for "preload" AOT nmethods so we can use them immediately (after your work on caching whole nmethod). Normal AOT nmethods (tier1-4) may live in separate space until they are requested - we can't publish (patch) them until corresponding classes are initialized. @vnkozlov pushed a change for mapping the cached code region separately from the CodeCache. ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2652331892 From kvn at openjdk.org Wed Feb 12 00:26:20 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Wed, 12 Feb 2025 00:26:20 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v3] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 00:07:43 GMT, Ashutosh Mehra wrote: >> This PR stores AOT code in the cached code region of AOT Cache. >> >> Some things worth pointing out: >> 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. >> 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. >> ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ >> 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". > > Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: > > Map cached code region separately from the CodeCache > > Signed-off-by: Ashutosh Mehra I am straggling with Minimal and Zero build too for may changes :( ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2652354747 From asmehra at openjdk.org Wed Feb 12 04:13:24 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 04:13:24 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v3] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 00:07:43 GMT, Ashutosh Mehra wrote: >> This PR stores AOT code in the cached code region of AOT Cache. >> >> Some things worth pointing out: >> 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. >> 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. >> ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ >> 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". > > Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: > > Map cached code region separately from the CodeCache > > Signed-off-by: Ashutosh Mehra Minimal is tricky. Now SCCache depends on CDS archive, so ideally its functionality should be guarded by INCLUDE_CDS and other CDS related macros. ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2652615405 From sgehwolf at redhat.com Wed Feb 12 09:07:02 2025 From: sgehwolf at redhat.com (Severin Gehwolf) Date: Wed, 12 Feb 2025 10:07:02 +0100 Subject: CFV: New leyden Committer: Aleksey Shipilev In-Reply-To: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> References: <06806a43-ed7b-407e-86ab-857570c0d454@oracle.com> Message-ID: <6c0668605f100fc310ea82431efb2b2315d87813.camel@redhat.com> Vote: yes On Mon, 2025-02-10 at 08:25 -0800, Vladimir Kozlov wrote: > I hereby nominate Aleksey Shipilev [1] to Leyden Committer. From shade at openjdk.org Wed Feb 12 09:10:27 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 09:10:27 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v2] In-Reply-To: References: Message-ID: On Mon, 10 Feb 2025 16:36:04 GMT, Aleksey Shipilev wrote: >> It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. >> >> We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. >> >> I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. >> >> Additional testing: >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains two additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349713-mmap-sccache > - Fix I think this PR would be superseded by @ashu-mehra's #39. We can still do it ahead of #39, removing the flag and accepting all platforms. ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2653065086 From shade at openjdk.org Wed Feb 12 10:33:46 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 10:33:46 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v3] In-Reply-To: References: Message-ID: > It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. > > We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. > > I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. > > Additional testing: > - [x] Linux x86_64 server fastdebug, `runtime/cds` Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains four additional commits since the last revision: - Remove flag, allow all platforms, remove C-heap load - Merge branch 'premain' into JDK-8349713-mmap-sccache - Merge branch 'premain' into JDK-8349713-mmap-sccache - Fix ------------- Changes: - all: https://git.openjdk.org/leyden/pull/34/files - new: https://git.openjdk.org/leyden/pull/34/files/ce07d999..2f884d8e Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=34&range=02 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=34&range=01-02 Stats: 65 lines in 7 files changed: 26 ins; 27 del; 12 mod Patch: https://git.openjdk.org/leyden/pull/34.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/34/head:pull/34 PR: https://git.openjdk.org/leyden/pull/34 From shade at openjdk.org Wed Feb 12 10:52:27 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 10:52:27 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v3] In-Reply-To: References: Message-ID: <4gJsJqFdBjwIt9zpm5OD0Fq3IWUF0gXHKjSC1fo2FlM=.fec1838f-620c-4b9a-9fee-151cda4b651e@github.com> On Wed, 12 Feb 2025 04:10:29 GMT, Ashutosh Mehra wrote: > Minimal is tricky. Now SCCache depends on CDS archive, so ideally its functionality should be guarded by INCLUDE_CDS and other CDS related macros. Minimal is easy enough to fix, we just need to clearly introduce dependency on CDS, see #40. ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2653353551 From shade at openjdk.org Wed Feb 12 10:54:35 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 10:54:35 GMT Subject: RFR: 8349905: [leyden] Make SCCache depend on CDS build feature Message-ID: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> As we are moving more SCCache code to CDS archives, we need to start depending on CDS feature being enabled during the build to get access to SCCache stuff. A common configuration where CDS is not available is Minimal VM. ------------- Commit messages: - Fix Changes: https://git.openjdk.org/leyden/pull/40/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=40&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8349905 Stats: 31 lines in 3 files changed: 3 ins; 1 del; 27 mod Patch: https://git.openjdk.org/leyden/pull/40.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/40/head:pull/40 PR: https://git.openjdk.org/leyden/pull/40 From asmehra at openjdk.org Wed Feb 12 14:14:23 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 14:14:23 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v2] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 09:07:52 GMT, Aleksey Shipilev wrote: >> Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains two additional commits since the last revision: >> >> - Merge branch 'premain' into JDK-8349713-mmap-sccache >> - Fix > > I think this PR would be superseded by @ashu-mehra's #39. We can still do it ahead of #39, removing the flag and accepting all platforms. @shipilev I am fine with merging this as is. ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2653824929 From shade at openjdk.org Wed Feb 12 15:15:01 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 15:15:01 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v4] In-Reply-To: References: Message-ID: > It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. > > We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. > > I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. > > Additional testing: > - [x] Linux x86_64 server fastdebug, `runtime/cds` Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision: Revert "Remove flag, allow all platforms, remove C-heap load" This reverts commit 2f884d8e961eb9ddfe13655a50b7c9edc9758e83. ------------- Changes: - all: https://git.openjdk.org/leyden/pull/34/files - new: https://git.openjdk.org/leyden/pull/34/files/2f884d8e..f2364f27 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=34&range=03 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=34&range=02-03 Stats: 32 lines in 3 files changed: 23 ins; 0 del; 9 mod Patch: https://git.openjdk.org/leyden/pull/34.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/34/head:pull/34 PR: https://git.openjdk.org/leyden/pull/34 From shade at openjdk.org Wed Feb 12 15:15:01 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 15:15:01 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v3] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 10:33:46 GMT, Aleksey Shipilev wrote: >> It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. >> >> We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. >> >> I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. >> >> Additional testing: >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains four additional commits since the last revision: > > - Remove flag, allow all platforms, remove C-heap load > - Merge branch 'premain' into JDK-8349713-mmap-sccache > - Merge branch 'premain' into JDK-8349713-mmap-sccache > - Fix All right, the flag stays for a while. Once Ashu moves this whole thing to CDS, we can remove the flag. Meanwhile, we only do mmap on Linux. I think we are ready to integrate this. ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2654010848 From kvn at openjdk.org Wed Feb 12 15:35:28 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Wed, 12 Feb 2025 15:35:28 GMT Subject: RFR: 8349905: [leyden] Make SCCache depend on CDS build feature In-Reply-To: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> References: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> Message-ID: On Wed, 12 Feb 2025 10:49:57 GMT, Aleksey Shipilev wrote: > As we are moving more SCCache code to CDS archives, we need to start depending on CDS feature being enabled during the build to get access to SCCache stuff. A common configuration where CDS is not available is Minimal VM. Looks good to me. Yes, SCC is completely depend on CDS now. ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/40#pullrequestreview-2612348219 From shade at openjdk.org Wed Feb 12 15:39:31 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 15:39:31 GMT Subject: RFR: 8349905: [leyden] Make SCCache depend on CDS build feature In-Reply-To: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> References: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> Message-ID: On Wed, 12 Feb 2025 10:49:57 GMT, Aleksey Shipilev wrote: > As we are moving more SCCache code to CDS archives, we need to start depending on CDS feature being enabled during the build to get access to SCCache stuff. A common configuration where CDS is not available is Minimal VM. Good, let's unblock Minimal VM builds for you and Ashu. ------------- PR Comment: https://git.openjdk.org/leyden/pull/40#issuecomment-2654079127 From duke at openjdk.org Wed Feb 12 15:39:31 2025 From: duke at openjdk.org (duke) Date: Wed, 12 Feb 2025 15:39:31 GMT Subject: RFR: 8349905: [leyden] Make SCCache depend on CDS build feature In-Reply-To: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> References: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> Message-ID: On Wed, 12 Feb 2025 10:49:57 GMT, Aleksey Shipilev wrote: > As we are moving more SCCache code to CDS archives, we need to start depending on CDS feature being enabled during the build to get access to SCCache stuff. A common configuration where CDS is not available is Minimal VM. @shipilev Your change (at version d53966d09c7f6370c7e92c832396aeb8182a5d31) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/40#issuecomment-2654083015 From kvn at openjdk.org Wed Feb 12 15:43:30 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Wed, 12 Feb 2025 15:43:30 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v3] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 00:07:43 GMT, Ashutosh Mehra wrote: >> This PR stores AOT code in the cached code region of AOT Cache. >> >> Some things worth pointing out: >> 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. >> 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. >> ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ >> 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". > > Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: > > Map cached code region separately from the CodeCache > > Signed-off-by: Ashutosh Mehra src/hotspot/share/cds/archiveBuilder.cpp line 315: > 313: > 314: address ArchiveBuilder::reserve_buffer() { > 315: size_t buffer_size = LP64_ONLY(CompressedClassSpaceSize) NOT_LP64(256 * M) + ReservedCodeCacheSize; Please add comment about `ReservedCodeCacheSize`. Why not `CachedCodeMaxSize`? src/hotspot/share/code/codeCache.cpp line 359: > 357: } > 358: > 359: You can undo that to avoid changing file. test/hotspot/jtreg/premain/lib/DemoSupport.gmk line 163: > 161: ${DEMO_CMDLINE} > 162: ls -l ${DEMO_CDS} > 163: #ls -l ${DEMO_CDS}.code I would just remove this line. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1952897696 PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1952904753 PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1952905831 From kvn at openjdk.org Wed Feb 12 16:15:19 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Wed, 12 Feb 2025 16:15:19 GMT Subject: git: openjdk/leyden: premain: 8349905: [leyden] Make SCCache depend on CDS build feature Message-ID: Changeset: 58e13812 Branch: premain Author: Aleksey Shipilev Committer: Vladimir Kozlov Date: 2025-02-12 16:14:22 +0000 URL: https://git.openjdk.org/leyden/commit/58e1381261eed0bb7d613e2e0c17fdbe0f161639 8349905: [leyden] Make SCCache depend on CDS build feature Reviewed-by: kvn ! make/hotspot/lib/JvmFeatures.gmk ! src/hotspot/share/code/SCCache.hpp ! src/hotspot/share/runtime/threads.cpp From shade at openjdk.org Wed Feb 12 16:17:25 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 16:17:25 GMT Subject: Integrated: 8349905: [leyden] Make SCCache depend on CDS build feature In-Reply-To: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> References: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> Message-ID: On Wed, 12 Feb 2025 10:49:57 GMT, Aleksey Shipilev wrote: > As we are moving more SCCache code to CDS archives, we need to start depending on CDS feature being enabled during the build to get access to SCCache stuff. A common configuration where CDS is not available is Minimal VM. This pull request has now been integrated. Changeset: 58e13812 Author: Aleksey Shipilev Committer: Vladimir Kozlov URL: https://git.openjdk.org/leyden/commit/58e1381261eed0bb7d613e2e0c17fdbe0f161639 Stats: 31 lines in 3 files changed: 3 ins; 1 del; 27 mod 8349905: [leyden] Make SCCache depend on CDS build feature Reviewed-by: kvn ------------- PR: https://git.openjdk.org/leyden/pull/40 From duke at openjdk.org Wed Feb 12 16:28:25 2025 From: duke at openjdk.org (duke) Date: Wed, 12 Feb 2025 16:28:25 GMT Subject: RFR: 8349713: [leyden] Memory map the cached code file [v4] In-Reply-To: References: Message-ID: <6ixEfn0cXKs2X_yBbp2CMUkCkaTQ4sqSmbohgiwpN3k=.bffb3bbc-67f7-452a-a72a-4683b3ad679d@github.com> On Wed, 12 Feb 2025 15:15:01 GMT, Aleksey Shipilev wrote: >> It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. >> >> We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. >> >> I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. >> >> Additional testing: >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision: > > Revert "Remove flag, allow all platforms, remove C-heap load" > > This reverts commit 2f884d8e961eb9ddfe13655a50b7c9edc9758e83. @shipilev Your change (at version f2364f27bc46a497aeccfe6f3e15a4431e18f9bd) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/34#issuecomment-2654233412 From kvn at openjdk.org Wed Feb 12 16:32:03 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Wed, 12 Feb 2025 16:32:03 GMT Subject: git: openjdk/leyden: premain: 8349713: [leyden] Memory map the cached code file Message-ID: Changeset: 79f7e616 Branch: premain Author: Aleksey Shipilev Committer: Vladimir Kozlov Date: 2025-02-12 16:30:40 +0000 URL: https://git.openjdk.org/leyden/commit/79f7e6168f212312247340151b786089eee0a40b 8349713: [leyden] Memory map the cached code file Reviewed-by: kvn, iklam ! src/hotspot/share/code/SCCache.cpp ! src/hotspot/share/compiler/compiler_globals.hpp From shade at openjdk.org Wed Feb 12 16:33:33 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 16:33:33 GMT Subject: Integrated: 8349713: [leyden] Memory map the cached code file In-Reply-To: References: Message-ID: <4opgh5CcxSjUG4ii0dfqOVrRDucqd4AJJ-hguavUbhE=.47eba11a-621d-4160-9f0d-3a672745c283@github.com> On Mon, 10 Feb 2025 12:14:11 GMT, Aleksey Shipilev wrote: > It is visible in profiles for lots of applications that reading the SC cache file at startup costs significantly. On JavacBenchApp example, loading ~25M code requires about 30ms. This is ~1 GB/sec, so it is I/O limited. > > We should really mmap the SC cache file to alleviate these costs. Let the actual SC readers (separate threads) to eat the cost of reading from the backing file. > > I was not entirely sure COW for file mappings works correctly on Windows, so I excepted that one. > > Additional testing: > - [x] Linux x86_64 server fastdebug, `runtime/cds` This pull request has now been integrated. Changeset: 79f7e616 Author: Aleksey Shipilev Committer: Vladimir Kozlov URL: https://git.openjdk.org/leyden/commit/79f7e6168f212312247340151b786089eee0a40b Stats: 33 lines in 2 files changed: 21 ins; 2 del; 10 mod 8349713: [leyden] Memory map the cached code file Reviewed-by: kvn, iklam ------------- PR: https://git.openjdk.org/leyden/pull/34 From asmehra at openjdk.org Wed Feb 12 17:07:23 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 17:07:23 GMT Subject: RFR: 8349905: [leyden] Make SCCache depend on CDS build feature In-Reply-To: References: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> Message-ID: <9uzgPCj-GN0yG30YkpnOX0o4mgZy-SgSa5qFdGu-3to=.b9f59bad-5b6e-40a3-a0e6-82a003631f37@github.com> On Wed, 12 Feb 2025 15:35:40 GMT, Aleksey Shipilev wrote: >> As we are moving more SCCache code to CDS archives, we need to start depending on CDS feature being enabled during the build to get access to SCCache stuff. A common configuration where CDS is not available is Minimal VM. > > Good, let's unblock Minimal VM builds for you and Ashu. @shipilev Thanks for fixing this. ------------- PR Comment: https://git.openjdk.org/leyden/pull/40#issuecomment-2654341402 From asmehra at openjdk.org Wed Feb 12 17:07:24 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 17:07:24 GMT Subject: RFR: 8349905: [leyden] Make SCCache depend on CDS build feature In-Reply-To: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> References: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> Message-ID: <4NMjI_F96coDSYr41Xf9j2j7So9LkDKFpxMuzx9WaRA=.bca87d98-efb0-41a7-8cab-349fd9e06b2d@github.com> On Wed, 12 Feb 2025 10:49:57 GMT, Aleksey Shipilev wrote: > As we are moving more SCCache code to CDS archives, we need to start depending on CDS feature being enabled during the build to get access to SCCache stuff. A common configuration where CDS is not available is Minimal VM. make/hotspot/lib/JvmFeatures.gmk line 126: > 124: classLoaderDataShared.cpp \ > 125: classLoaderExt.cpp \ > 126: precompiler.cpp \ Oh nice! I didn't know about this. Yesterday I was sprinkling INCLUDE_CDS in SCCache.cpp because it was getting compiled in the minimal config. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/40#discussion_r1953071370 From shade at openjdk.org Wed Feb 12 17:42:24 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 17:42:24 GMT Subject: RFR: 8349905: [leyden] Make SCCache depend on CDS build feature In-Reply-To: <4NMjI_F96coDSYr41Xf9j2j7So9LkDKFpxMuzx9WaRA=.bca87d98-efb0-41a7-8cab-349fd9e06b2d@github.com> References: <1aiBo57uf3gjfhDTUvZZzvCYrjfLB-qGE7U6ApolkNs=.94981e12-b03b-414c-b83d-bc4027eafa26@github.com> <4NMjI_F96coDSYr41Xf9j2j7So9LkDKFpxMuzx9WaRA=.bca87d98-efb0-41a7-8cab-349fd9e06b2d@github.com> Message-ID: <5PjS8IkA1eIBse3CcioCcJMrFuKu71pNLaRMk-ed-vs=.61cedff9-2d47-4abf-adbb-b43ddc7fb3e8@github.com> On Wed, 12 Feb 2025 17:03:55 GMT, Ashutosh Mehra wrote: >> As we are moving more SCCache code to CDS archives, we need to start depending on CDS feature being enabled during the build to get access to SCCache stuff. A common configuration where CDS is not available is Minimal VM. > > make/hotspot/lib/JvmFeatures.gmk line 126: > >> 124: classLoaderDataShared.cpp \ >> 125: classLoaderExt.cpp \ >> 126: precompiler.cpp \ > > Oh nice! I didn't know about this. Yesterday I was sprinkling INCLUDE_CDS in SCCache.cpp because it was getting compiled in the minimal config. Yup. This is a nuclear option in the build system! For your other PR, you might need to stub out more things with `NOT_CDS*` in `SCCache.hpp` to make things work. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/40#discussion_r1953128812 From headius at headius.com Wed Feb 12 18:37:54 2025 From: headius at headius.com (Charles Oliver Nutter) Date: Wed, 12 Feb 2025 12:37:54 -0600 Subject: AppCDS, DynamicCDS, Leyden and JRuby Message-ID: Hello friends, I'm revisiting CDS-related stuff in JRuby today! Claes R. suggested I direct my CDS questions here, since this list represents the future of that work. We are keenly awaiting the new AOTCache stuff but for now I'm looking primarily at AppCDS or DynamicCDS given the upcoming JRuby 10 baseline JDK level of 21. So, I have a JRuby launcher script that already can detect and use a jsa generated for JRuby into the install location. I'm adding a flag to run -XX:ArchiveClassesAtExit and have a few questions: * OMG that warning output... is there any way to capture that to a file without redirecting the whole process? * Why is it not possible to boot with one JSA and then dump a new JSA at the end? It complains if I use both SharedArchiveFile and ArchiveClassesAtExit in the same command line. * Is there any way to verify if the JSA will be usable (not stale, etc) without parsing stderr output from the failed attempt to use it? Basically I'm trying to make this a hidden automatic feature in the JRuby launcher: if the JSA doesn't exist, generate and use it; if it's stale because JRuby or JDK changed, regenerate and use it. That's hard to do if it's spitting warnings at my users. *Charles Oliver Nutter* *Architect and Technologist* Headius Enterprises https://www.headius.com headius at headius.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From asmehra at openjdk.org Wed Feb 12 19:21:30 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 19:21:30 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v3] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 15:35:56 GMT, Vladimir Kozlov wrote: > Why not CachedCodeMaxSize? Yeah, I think that makes sense. Since the aot code buffer is based on CachedCodeMaxSize, we can use this for sizing cached code region as well. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1953264442 From asmehra at openjdk.org Wed Feb 12 19:34:04 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 19:34:04 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v4] In-Reply-To: References: Message-ID: > This PR stores AOT code in the cached code region of AOT Cache. > > Some things worth pointing out: > 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. > 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. > ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ > 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". Ashutosh Mehra has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains six commits: - Review comments Signed-off-by: Ashutosh Mehra - Fix compile faliure Signed-off-by: Ashutosh Mehra - Merge branch 'premain' into store-aot-code-in-aot-cache - Map cached code region separately from the CodeCache Signed-off-by: Ashutosh Mehra - Restore code that maps cached code region to CodeCache Signed-off-by: Ashutosh Mehra - Store AOT code in cached code region of AOT cache Signed-off-by: Ashutosh Mehra ------------- Changes: https://git.openjdk.org/leyden/pull/39/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=03 Stats: 322 lines in 10 files changed: 35 ins; 185 del; 102 mod Patch: https://git.openjdk.org/leyden/pull/39.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/39/head:pull/39 PR: https://git.openjdk.org/leyden/pull/39 From asmehra at openjdk.org Wed Feb 12 19:34:08 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 19:34:08 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v3] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 15:40:02 GMT, Vladimir Kozlov wrote: >> Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: >> >> Map cached code region separately from the CodeCache >> >> Signed-off-by: Ashutosh Mehra > > src/hotspot/share/code/codeCache.cpp line 359: > >> 357: } >> 358: >> 359: > > You can undo that to avoid changing file. Done > test/hotspot/jtreg/premain/lib/DemoSupport.gmk line 163: > >> 161: ${DEMO_CMDLINE} >> 162: ls -l ${DEMO_CDS} >> 163: #ls -l ${DEMO_CDS}.code > > I would just remove this line. Done ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1953281171 PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1953281081 From shade at openjdk.org Wed Feb 12 19:44:23 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Wed, 12 Feb 2025 19:44:23 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v4] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 19:34:04 GMT, Ashutosh Mehra wrote: >> This PR stores AOT code in the cached code region of AOT Cache. >> >> Some things worth pointing out: >> 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. >> 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. >> ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ >> 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". > > Ashutosh Mehra has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains six commits: > > - Review comments > > Signed-off-by: Ashutosh Mehra > - Fix compile faliure > > Signed-off-by: Ashutosh Mehra > - Merge branch 'premain' into store-aot-code-in-aot-cache > - Map cached code region separately from the CodeCache > > Signed-off-by: Ashutosh Mehra > - Restore code that maps cached code region to CodeCache > > Signed-off-by: Ashutosh Mehra > - Store AOT code in cached code region of AOT cache > > Signed-off-by: Ashutosh Mehra src/hotspot/share/code/SCCache.cpp line 554: > 552: if (_for_read) { > 553: // Read cache > 554: if (MmapCachedCode) { I think you can drop `MmapCachedCode` flag as well. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1953294709 From headius at headius.com Wed Feb 12 20:13:38 2025 From: headius at headius.com (Charles Oliver Nutter) Date: Wed, 12 Feb 2025 14:13:38 -0600 Subject: AppCDS, DynamicCDS, Leyden and JRuby In-Reply-To: References: Message-ID: Alexey Shipilev directed me toward the -Xlog flag to silence the CDS output, which seems to work pretty well. I wish I could direct this to /dev/null, though! -Xlog:cds=off -Xlog:cds=warning:file=jsa.log This would also silence the stale JSA warning. My second question stands, though: why can't I incrementally add to the JSA by starting up with it AND dumping a new one at the end? On Wed, Feb 12, 2025 at 12:37?PM Charles Oliver Nutter wrote: > Hello friends, I'm revisiting CDS-related stuff in JRuby today! Claes R. > suggested I direct my CDS questions here, since this list represents the > future of that work. > > We are keenly awaiting the new AOTCache stuff but for now I'm looking > primarily at AppCDS or DynamicCDS given the upcoming JRuby 10 baseline JDK > level of 21. > > So, I have a JRuby launcher script that already can detect and use a jsa > generated for JRuby into the install location. I'm adding a flag to run > -XX:ArchiveClassesAtExit and have a few questions: > > * OMG that warning output... is there any way to capture that to a file > without redirecting the whole process? > * Why is it not possible to boot with one JSA and then dump a new JSA at > the end? It complains if I use both SharedArchiveFile and > ArchiveClassesAtExit in the same command line. > * Is there any way to verify if the JSA will be usable (not stale, etc) > without parsing stderr output from the failed attempt to use it? > > Basically I'm trying to make this a hidden automatic feature in the JRuby > launcher: if the JSA doesn't exist, generate and use it; if it's stale > because JRuby or JDK changed, regenerate and use it. That's hard to do if > it's spitting warnings at my users. > > *Charles Oliver Nutter* > *Architect and Technologist* > Headius Enterprises > https://www.headius.com > headius at headius.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: From asmehra at openjdk.org Wed Feb 12 20:15:22 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 20:15:22 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v4] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 19:41:21 GMT, Aleksey Shipilev wrote: >> Ashutosh Mehra has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains six commits: >> >> - Review comments >> >> Signed-off-by: Ashutosh Mehra >> - Fix compile faliure >> >> Signed-off-by: Ashutosh Mehra >> - Merge branch 'premain' into store-aot-code-in-aot-cache >> - Map cached code region separately from the CodeCache >> >> Signed-off-by: Ashutosh Mehra >> - Restore code that maps cached code region to CodeCache >> >> Signed-off-by: Ashutosh Mehra >> - Store AOT code in cached code region of AOT cache >> >> Signed-off-by: Ashutosh Mehra > > src/hotspot/share/code/SCCache.cpp line 554: > >> 552: if (_for_read) { >> 553: // Read cache >> 554: if (MmapCachedCode) { > > I think you can drop `MmapCachedCode` flag as well. right ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1953331234 From asmehra at openjdk.org Wed Feb 12 20:23:48 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 20:23:48 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v5] In-Reply-To: References: Message-ID: > This PR stores AOT code in the cached code region of AOT Cache. > > Some things worth pointing out: > 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. > 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. > ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ > 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: Remove MmapCachedCode Signed-off-by: Ashutosh Mehra ------------- Changes: - all: https://git.openjdk.org/leyden/pull/39/files - new: https://git.openjdk.org/leyden/pull/39/files/229c0e18..a4bc2d3f Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=04 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=03-04 Stats: 3 lines in 1 file changed: 0 ins; 3 del; 0 mod Patch: https://git.openjdk.org/leyden/pull/39.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/39/head:pull/39 PR: https://git.openjdk.org/leyden/pull/39 From kvn at openjdk.org Wed Feb 12 20:52:22 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Wed, 12 Feb 2025 20:52:22 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v5] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 20:23:48 GMT, Ashutosh Mehra wrote: >> This PR stores AOT code in the cached code region of AOT Cache. >> >> Some things worth pointing out: >> 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. >> 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. >> ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ >> 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". > > Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: > > Remove MmapCachedCode > > Signed-off-by: Ashutosh Mehra Did you measure any performance with this change? src/hotspot/share/code/SCCache.cpp line 162: > 160: if (is_on_for_write() && !external_word_Relocation::can_be_relocated(byte_map_base)) { > 161: // Bail out since we can't encode card table base address with relocation > 162: log_warning(scc, init)("Can't create Code Cache because card table base address is not relocatable: " INTPTR_FORMAT, p2i(byte_map_base)); Missing "AOT" in "Code Cache" src/hotspot/share/code/SCCache.cpp line 1043: > 1041: assert(total_size < ReservedCodeCacheSize, "Cached code region size (" UINT32_FORMAT " bytes) in AOT Cache is less than the required size (" UINT32_FORMAT " bytes).", > 1042: total_size, (uint)ReservedCodeCacheSize); > 1043: Should you compare to `CachedCodeMaxSize`? Also missing `Code` in "AOT Cache". ------------- PR Review: https://git.openjdk.org/leyden/pull/39#pullrequestreview-2613156154 PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1953378615 PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1953371073 From asmehra at openjdk.org Wed Feb 12 21:22:25 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 21:22:25 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v5] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 20:49:50 GMT, Vladimir Kozlov wrote: > Did you measure any performance with this change? Nope, I haven't done any perf testing with this change. ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2654868280 From ioi.lam at oracle.com Wed Feb 12 21:41:53 2025 From: ioi.lam at oracle.com (ioi.lam at oracle.com) Date: Wed, 12 Feb 2025 13:41:53 -0800 Subject: AppCDS, DynamicCDS, Leyden and JRuby In-Reply-To: References: Message-ID: <2f2c1035-e9e3-4390-8b0d-f31c6f513288@oracle.com> Hi Charlie, Thanks for trying CDS out. Is there any performance numbers you can share with us? More comments below On 2/12/25 10:37 AM, Charles Oliver Nutter wrote: > Hello friends, I'm revisiting CDS-related stuff in JRuby today! Claes > R. suggested I direct my CDS questions here, since this list > represents the future of that work. > > We are keenly awaiting the new AOTCache stuff but for now I'm looking > primarily at AppCDS or DynamicCDS given the upcoming JRuby 10 baseline > JDK level of 21. > > So, I have a JRuby launcher script that already can detect and use a > jsa generated for JRuby into the install location. I'm adding a flag > to run -XX:ArchiveClassesAtExit and have a few questions: > > * OMG that warning output... is there any way to capture that to a > file without redirecting the whole process? > * Why is it not possible to boot with one JSA and then dump a new JSA > at the end? It complains if I use both SharedArchiveFile and > ArchiveClassesAtExit in the same command line. That's something we are talking about in the Leyden project - train with an existing cache and write an updated cache at the end. What kinds of scenarios are you looking at? > * Is there any way to verify if the JSA will be usable (not stale, > etc) without parsing stderr output from the failed attempt to use it? > > Basically I'm trying to make this a hidden automatic feature in the > JRuby launcher: if the JSA doesn't exist, generate and use it; if it's > stale because JRuby or JDK changed, regenerate and use it. That's hard > to do if it's spitting warnings at my users. Have you tried the -XX:+AutoCreateSharedArchive flag? It should recreate the dynamic archive if you have updated the app's JAR files or updated to a new JDK. See https://docs.oracle.com/en/java/javase/21/docs/specs/man/java.html Thanks - Ioi > *Charles Oliver Nutter* > /Architect and Technologist/ > Headius Enterprises > https://www.headius.com > headius at headius.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From kvn at openjdk.org Wed Feb 12 21:49:27 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Wed, 12 Feb 2025 21:49:27 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v5] In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 20:23:48 GMT, Ashutosh Mehra wrote: >> This PR stores AOT code in the cached code region of AOT Cache. >> >> Some things worth pointing out: >> 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. >> 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. >> ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ >> 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". > > Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: > > Remove MmapCachedCode > > Signed-off-by: Ashutosh Mehra Now we have 32-bits ARM build issue. ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2654913288 From asmehra at openjdk.org Wed Feb 12 21:58:28 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Wed, 12 Feb 2025 21:58:28 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v5] In-Reply-To: References: Message-ID: <8e13mkXd2vQkypYa3kPnvbDNA4-lXC3S2HuJMFdtkIc=.d25f8dfb-b997-492f-9407-6ae33398ad49@github.com> On Wed, 12 Feb 2025 21:46:35 GMT, Vladimir Kozlov wrote: > Now we have 32-bits ARM build issue. yeah, I think I know what the issue is here. Testing the fix. ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2654928835 From headius at headius.com Wed Feb 12 22:22:11 2025 From: headius at headius.com (Charles Oliver Nutter) Date: Wed, 12 Feb 2025 16:22:11 -0600 Subject: AppCDS, DynamicCDS, Leyden and JRuby In-Reply-To: <2f2c1035-e9e3-4390-8b0d-f31c6f513288@oracle.com> References: <2f2c1035-e9e3-4390-8b0d-f31c6f513288@oracle.com> Message-ID: On Wed, Feb 12, 2025 at 3:42?PM wrote: > Hi Charlie, > > Thanks for trying CDS out. Is there any performance numbers you can share > with us? > Sure! Here's a few JRuby command lines before and after with JDK 21 CDS: Hello world, with and without --dev flag (--dev limits to tier 1, disables JRuby JIT): jruby -e 1 2.52s user 0.13s system 183% cpu 1.447 total jruby --dev -e 1 1.16s user 0.12s system 125% cpu 1.014 total With CDS: jruby -e 1 1.78s user 0.10s system 192% cpu 0.979 total jruby --dev -e 1 0.92s user 0.09s system 120% cpu 0.834 total List all installed libraries (gems): jruby -S gem list > /dev/null 5.24s user 0.23s system 215% cpu 2.532 total jruby --dev -S gem list > /dev/null 2.15s user 0.21s system 112% cpu 2.089 total With CDS: jruby -S gem list > /dev/null 4.39s user 0.20s system 225% cpu 2.036 total jruby --dev -S gem list > /dev/null 1.76s user 0.13s system 131% cpu 1.437 total List all build targets in current project (rake): jruby -S rake -T > /dev/null 4.58s user 0.25s system 143% cpu 3.363 total jruby --dev -S rake -T > /dev/null 1.99s user 0.20s system 81% cpu 2.682 total With CDS: jruby -S rake -T > /dev/null 3.97s user 0.23s system 141% cpu 2.977 total jruby --dev -S rake -T > /dev/null 1.77s user 0.18s system 78% cpu 2.476 total The CDS improvements are comparable on their own to --dev, which is great, and combining them with --dev is even more impressive. The CRuby numbers are still 10x faster, but this is getting into a range where the difference is tolerable. I'm hoping AOTCache can help us eliminate the need for --dev. Tier 2 code is still much slower than tier 1 code. > On 2/12/25 10:37 AM, Charles Oliver Nutter wrote: > > * OMG that warning output... is there any way to capture that to a file > without redirecting the whole process? > * Why is it not possible to boot with one JSA and then dump a new JSA at > the end? It complains if I use both SharedArchiveFile and > ArchiveClassesAtExit in the same command line. > > > That's something we are talking about in the Leyden project - train with > an existing cache and write an updated cache at the end. What kinds of > scenarios are you looking at? > My interest right now is entirely startup time, which is honestly the only reason JRuby hasn't seem more success in Ruby shops. When we take 10x longer to start up small commands, people just walk away. Longer term, we are interested in pre-training the AOT cache specific to a user's application, suitable for deploying a hotter image to a server. I have also been exploring CRaC for that, but it has serious limitations. We are looking forward to a future where we can precompile all of the Ruby standard library to JRuby .class output and have it boot up with cached AOT for whatever you happen to use during your command. We're also planning to start pre-generating CDS stuff when publishing container images for e.g. Docker. > Have you tried the -XX:+AutoCreateSharedArchive flag? It should recreate > the dynamic archive if you have updated the app's JAR files or updated to a > new JDK. > This is definitely what we want for the JRuby launcher! I've integrated it into the launcher and it seems to work well (my log redirects must still be included to silence CDS warnings, though): $ rm -f lib/jruby.jsa $ time bin/jruby.sh -e 1 bin/jruby.sh -e 1 2.90s user 0.22s system 139% cpu 2.230 total $ time bin/jruby.sh -e 1 bin/jruby.sh -e 1 1.79s user 0.11s system 176% cpu 1.081 total $ ls -l lib/jruby.jsa -r--r--r-- 1 headius staff 32489472 Feb 12 16:14 lib/jruby.jsa I'm keen to play with the preview of AOTCache in 24. If anyone else wants to try this stuff with JRuby, building JRuby is just "clone repo" and then "run ./mvnw". The launcher is bin/jruby at that point and it's just POSIX shell. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From asmehra at openjdk.org Thu Feb 13 02:21:00 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 13 Feb 2025 02:21:00 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v6] In-Reply-To: References: Message-ID: > This PR stores AOT code in the cached code region of AOT Cache. > > Some things worth pointing out: > 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. > 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. > ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ > 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". Ashutosh Mehra has updated the pull request incrementally with two additional commits since the last revision: - Fix arm compile failure Signed-off-by: Ashutosh Mehra - Minor update Signed-off-by: Ashutosh Mehra ------------- Changes: - all: https://git.openjdk.org/leyden/pull/39/files - new: https://git.openjdk.org/leyden/pull/39/files/a4bc2d3f..1c760189 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=05 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=04-05 Stats: 36 lines in 6 files changed: 17 ins; 9 del; 10 mod Patch: https://git.openjdk.org/leyden/pull/39.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/39/head:pull/39 PR: https://git.openjdk.org/leyden/pull/39 From asmehra at openjdk.org Thu Feb 13 02:26:50 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 13 Feb 2025 02:26:50 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v7] In-Reply-To: References: Message-ID: > This PR stores AOT code in the cached code region of AOT Cache. > > Some things worth pointing out: > 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. > 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. > ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ > 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". Ashutosh Mehra has updated the pull request incrementally with two additional commits since the last revision: - Fix another comment Signed-off-by: Ashutosh Mehra - Missing "AOT" in the comment Signed-off-by: Ashutosh Mehra ------------- Changes: - all: https://git.openjdk.org/leyden/pull/39/files - new: https://git.openjdk.org/leyden/pull/39/files/1c760189..a63db458 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=06 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=05-06 Stats: 2 lines in 1 file changed: 0 ins; 0 del; 2 mod Patch: https://git.openjdk.org/leyden/pull/39.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/39/head:pull/39 PR: https://git.openjdk.org/leyden/pull/39 From kvn at openjdk.org Thu Feb 13 02:55:24 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Thu, 13 Feb 2025 02:55:24 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v7] In-Reply-To: References: Message-ID: On Thu, 13 Feb 2025 02:26:50 GMT, Ashutosh Mehra wrote: >> This PR stores AOT code in the cached code region of AOT Cache. >> >> Some things worth pointing out: >> 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. >> 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. >> ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ >> 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". > > Ashutosh Mehra has updated the pull request incrementally with two additional commits since the last revision: > > - Fix another comment > > Signed-off-by: Ashutosh Mehra > - Missing "AOT" in the comment > > Signed-off-by: Ashutosh Mehra Looks good now. ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/39#pullrequestreview-2613703279 From iklam at openjdk.org Thu Feb 13 05:30:22 2025 From: iklam at openjdk.org (Ioi Lam) Date: Thu, 13 Feb 2025 05:30:22 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v7] In-Reply-To: References: Message-ID: On Thu, 13 Feb 2025 02:26:50 GMT, Ashutosh Mehra wrote: >> This PR stores AOT code in the cached code region of AOT Cache. >> >> Some things worth pointing out: >> 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. >> 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. >> ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ >> 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". > > Ashutosh Mehra has updated the pull request incrementally with two additional commits since the last revision: > > - Fix another comment > > Signed-off-by: Ashutosh Mehra > - Missing "AOT" in the comment > > Signed-off-by: Ashutosh Mehra Looks good overall. Some minor comments. Also, I think you should remove `aotFile` from test/lib/jdk/test/lib/cds/CDSAppTester.java src/hotspot/share/cds/cdsAccess.hpp line 59: > 57: static void test_heap_access_api() NOT_CDS_JAVA_HEAP_RETURN; > 58: > 59: static void* allocate_from_code_cache(size_t size) NOT_CDS_JAVA_HEAP_RETURN_(nullptr); I think the following functions should be marked as `NOT_CDS_RETURN`. In the cpp file, they should be moved outside of the `INCLUDE_CDS_JAVA_HEAP` block: void* CDSAccess::allocate_from_code_cache(size_t size) size_t CDSAccess::get_cached_code_size() void CDSAccess::set_cached_code_size(size_t sz) bool CDSAccess::is_cached_code_region_empty() bool CDSAccess::map_cached_code(ReservedSpace rs) src/hotspot/share/code/SCCache.cpp line 409: > 407: }; > 408: > 409: // Skeleton code for including cached code in CDS: The comment "Skeleton code for including cached code in CDS" should be changed to something like "Storing AOT code in CDS" ------------- PR Review: https://git.openjdk.org/leyden/pull/39#pullrequestreview-2613866367 PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1953823170 PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1953825792 From duke at openjdk.org Thu Feb 13 06:48:16 2025 From: duke at openjdk.org (duke) Date: Thu, 13 Feb 2025 06:48:16 GMT Subject: git: openjdk/leyden: premain: Reinstated ArchiveLoaderLookupCache after merging JEP 483 from mainline Message-ID: Changeset: 61f6cd20 Branch: premain Author: iklam Date: 2025-02-11 22:05:33 +0000 URL: https://git.openjdk.org/leyden/commit/61f6cd2010dec746c87af256c21695682d2d338a Reinstated ArchiveLoaderLookupCache after merging JEP 483 from mainline ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/AOTClassLinkingVerification.java From shade at openjdk.org Thu Feb 13 13:18:38 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Thu, 13 Feb 2025 13:18:38 GMT Subject: RFR: 8349814: [leyden] Avoid uncommon traps in preload code [v2] In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 16:39:39 GMT, Aleksey Shipilev wrote: >> Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. >> >> Additional testing: >> - [x] Ad-hoc perf tests (see comment below) >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Merge branch 'premain' into JDK-8349814-preload-avoid-uncommon-traps > - Comment > - Fix In addition to Vladimir's comments above, I also found this greatly expands the size of generated code for preloading, which leads to expanded code buffers, which makes more methods ineligible for SCC. So the net effect can be negative. This PR is on hold until I figure out a way out of this. ------------- PR Comment: https://git.openjdk.org/leyden/pull/38#issuecomment-2656570866 From vladimir.x.ivanov at oracle.com Thu Feb 13 14:54:08 2025 From: vladimir.x.ivanov at oracle.com (Vladimir Ivanov) Date: Thu, 13 Feb 2025 14:54:08 +0000 Subject: AppCDS, DynamicCDS, Leyden and JRuby In-Reply-To: References: <2f2c1035-e9e3-4390-8b0d-f31c6f513288@oracle.com> Message-ID: <1BBF98FF-E20A-40BB-953C-8097E90CA336@oracle.com> Hi Charlie, > I'm hoping AOTCache can help us eliminate the need for --dev. Tier 2 code is still much slower than tier 1 code. Did you mean Tier 3 vs Tier 1? Our observations are Tier2 overhead is quite modest (~10%). In case you observe severe performance degradation between Tier 1 and Tier2, please, share a benchmark to try. Best regards, Vladimir Ivanov From headius at headius.com Thu Feb 13 15:12:54 2025 From: headius at headius.com (Charles Oliver Nutter) Date: Thu, 13 Feb 2025 09:12:54 -0600 Subject: JRuby and JDK24 AOTCache experiment Message-ID: I figured folks here would be interested to see this experiment using AOTCache with JRuby. https://gist.github.com/headius/1a5cfbc91ed8bacd194f1c592a90c275 I just test the 'hello world' scenario that represents our baseline startup, but AOT caching manages to beat the automatic AppCDS startup by a bit. More/better training might help here I'm guessing? This is from the JRuby 10 branch (10-dev) on https://github.com/jruby/jruby.git if anyone wants to play with it. Just run `./mvnw` and then `bin/ruby` will work. We recently added support for AutoCreateSharedArchive so it will use CDS by default. Pass --nocache to disable that behavior. *Charles Oliver Nutter* *Architect and Technologist* Headius Enterprises https://www.headius.com headius at headius.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From asmehra at openjdk.org Thu Feb 13 15:16:29 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 13 Feb 2025 15:16:29 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v7] In-Reply-To: References: Message-ID: On Thu, 13 Feb 2025 05:20:36 GMT, Ioi Lam wrote: >> Ashutosh Mehra has updated the pull request incrementally with two additional commits since the last revision: >> >> - Fix another comment >> >> Signed-off-by: Ashutosh Mehra >> - Missing "AOT" in the comment >> >> Signed-off-by: Ashutosh Mehra > > src/hotspot/share/cds/cdsAccess.hpp line 59: > >> 57: static void test_heap_access_api() NOT_CDS_JAVA_HEAP_RETURN; >> 58: >> 59: static void* allocate_from_code_cache(size_t size) NOT_CDS_JAVA_HEAP_RETURN_(nullptr); > > I think the following functions should be marked as `NOT_CDS_RETURN`. In the cpp file, they should be moved outside of the `INCLUDE_CDS_JAVA_HEAP` block: > > > void* CDSAccess::allocate_from_code_cache(size_t size) > size_t CDSAccess::get_cached_code_size() > void CDSAccess::set_cached_code_size(size_t sz) > bool CDSAccess::is_cached_code_region_empty() > bool CDSAccess::map_cached_code(ReservedSpace rs) yup, I agree ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/39#discussion_r1954705262 From headius at headius.com Thu Feb 13 15:25:56 2025 From: headius at headius.com (Charles Oliver Nutter) Date: Thu, 13 Feb 2025 09:25:56 -0600 Subject: AppCDS, DynamicCDS, Leyden and JRuby In-Reply-To: <1BBF98FF-E20A-40BB-953C-8097E90CA336@oracle.com> References: <2f2c1035-e9e3-4390-8b0d-f31c6f513288@oracle.com> <1BBF98FF-E20A-40BB-953C-8097E90CA336@oracle.com> Message-ID: On Thu, Feb 13, 2025 at 8:54?AM Vladimir Ivanov < vladimir.x.ivanov at oracle.com> wrote: > Hi Charlie, > > > I'm hoping AOTCache can help us eliminate the need for --dev. Tier 2 > code is still much slower than tier 1 code. > > Did you mean Tier 3 vs Tier 1? Our observations are Tier2 overhead is > quite modest (~10%). > > In case you observe severe performance degradation between Tier 1 and > Tier2, please, share a benchmark to try. > You're right, it's not much, but it's not zero... and limiting to tier 2 wouldn't accomplish anything for us, since any profile data it collects would never be used. Here's default (tiered up to 4) versus limiting to tier 3, 2, and 1 for JRuby baseline startup (hello worldish): jruby -e 1 2.35s user 0.16s system 165% cpu 1.518 total jruby -e 1 2.73s user 0.21s system 183% cpu 1.603 total jruby -e 1 2.37s user 0.14s system 180% cpu 1.385 total jruby -J-XX:TieredStopAtLevel=3 -e 1 1.74s user 0.16s system 113% cpu 1.683 total jruby -J-XX:TieredStopAtLevel=3 -e 1 1.84s user 0.14s system 135% cpu 1.464 total jruby -J-XX:TieredStopAtLevel=3 -e 1 1.81s user 0.15s system 136% cpu 1.442 total jruby -J-XX:TieredStopAtLevel=2 -e 1 1.38s user 0.13s system 116% cpu 1.301 total jruby -J-XX:TieredStopAtLevel=2 -e 1 1.42s user 0.13s system 119% cpu 1.293 total jruby -J-XX:TieredStopAtLevel=2 -e 1 1.55s user 0.16s system 114% cpu 1.490 total jruby -J-XX:TieredStopAtLevel=1 -e 1 1.31s user 0.11s system 118% cpu 1.195 total jruby -J-XX:TieredStopAtLevel=1 -e 1 1.39s user 0.12s system 121% cpu 1.239 total jruby -J-XX:TieredStopAtLevel=1 -e 1 1.36s user 0.15s system 127% cpu 1.180 total And for "gem list" to print out all installed Ruby libraries: jruby -S gem list > /dev/null 5.28s user 0.28s system 214% cpu 2.591 total jruby -S gem list > /dev/null 4.92s user 0.23s system 216% cpu 2.383 total jruby -J-XX:TieredStopAtLevel=3 -S gem list > /dev/null 3.43s user 0.19s system 135% cpu 2.664 total jruby -J-XX:TieredStopAtLevel=3 -S gem list > /dev/null 3.33s user 0.17s system 145% cpu 2.402 total jruby -J-XX:TieredStopAtLevel=3 -S gem list > /dev/null 3.58s user 0.19s system 153% cpu 2.453 total jruby -J-XX:TieredStopAtLevel=2 -S gem list > /dev/null 2.76s user 0.21s system 148% cpu 1.992 total jruby -J-XX:TieredStopAtLevel=2 -S gem list > /dev/null 2.80s user 0.20s system 153% cpu 1.955 total jruby -J-XX:TieredStopAtLevel=2 -S gem list > /dev/null 2.71s user 0.18s system 144% cpu 1.994 total jruby -J-XX:TieredStopAtLevel=1 -S gem list > /dev/null 2.50s user 0.18s system 139% cpu 1.913 total jruby -J-XX:TieredStopAtLevel=1 -S gem list > /dev/null 2.58s user 0.21s system 144% cpu 1.930 total jruby -J-XX:TieredStopAtLevel=1 -S gem list > /dev/null 2.50s user 0.16s system 140% cpu 1.894 total jruby -J-XX:TieredStopAtLevel=1 -S gem list > /dev/null 2.54s user 0.19s system 144% cpu 1.888 total -------------- next part -------------- An HTML attachment was scrubbed... URL: From asmehra at openjdk.org Thu Feb 13 16:34:45 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 13 Feb 2025 16:34:45 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v8] In-Reply-To: References: Message-ID: > This PR stores AOT code in the cached code region of AOT Cache. > > Some things worth pointing out: > 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. > 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. > ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ > 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". Ashutosh Mehra has updated the pull request incrementally with three additional commits since the last revision: - Use NOT_CDS_RETURN instead of NOT_CDS_JAVA_HEAP_RETURN for methods not dependent on archive heap support in CDSAccess Signed-off-by: Ashutosh Mehra - Update test Signed-off-by: Ashutosh Mehra - Update comment Signed-off-by: Ashutosh Mehra ------------- Changes: - all: https://git.openjdk.org/leyden/pull/39/files - new: https://git.openjdk.org/leyden/pull/39/files/a63db458..28d1da56 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=07 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=39&range=06-07 Stats: 13 lines in 4 files changed: 2 ins; 4 del; 7 mod Patch: https://git.openjdk.org/leyden/pull/39.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/39/head:pull/39 PR: https://git.openjdk.org/leyden/pull/39 From ioi.lam at oracle.com Thu Feb 13 18:36:25 2025 From: ioi.lam at oracle.com (ioi.lam at oracle.com) Date: Thu, 13 Feb 2025 10:36:25 -0800 Subject: JRuby and JDK24 AOTCache experiment In-Reply-To: References: Message-ID: Which build of JDK 24 (or mainline) are you using? There's a recent change that turns on -XX:+AOTClassLinking automatically to take advantage of all JEP 483 optimizations (including the AOT-linking of lambdas) https://bugs.openjdk.org/browse/JDK-8348752 If you're using an older JDK 24 build (earlier than JDK 24-b35), you might need to add -XX:+AOTClassLinking explicitly. A good way for checking is with -Xlog:cds,class+load and see how many classes you are loading from CDS vs dynamically parsed. Thanks - Ioi On 2/13/25 7:12 AM, Charles Oliver Nutter wrote: > I figured folks here would be interested to see this experiment using > AOTCache with JRuby. > > https://gist.github.com/headius/1a5cfbc91ed8bacd194f1c592a90c275 > > I just test the 'hello world' scenario that represents our baseline > startup, but AOT caching manages to beat the automatic AppCDS startup > by a bit. More/better training might help here I'm guessing? > > This is from the JRuby 10 branch (10-dev) on > https://github.com/jruby/jruby.git if anyone wants to play with it. > Just run `./mvnw` and then `bin/ruby` will work. We recently added > support for AutoCreateSharedArchive so it will use CDS by default. > Pass --nocache to disable that behavior. > > *Charles Oliver Nutter* > /Architect and Technologist/ > Headius Enterprises > https://www.headius.com > headius at headius.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From asmehra at openjdk.org Thu Feb 13 20:06:01 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 13 Feb 2025 20:06:01 GMT Subject: git: openjdk/leyden: premain: Store AOT code in cached code region of AOT cache Message-ID: <5f877e76-ca37-474b-9aa8-42b19ac55e62@openjdk.org> Changeset: bdbeaf25 Branch: premain Author: Ashutosh Mehra Date: 2025-02-13 20:05:13 +0000 URL: https://git.openjdk.org/leyden/commit/bdbeaf2588fb9b02d98c1426c160236ea8ef763e Store AOT code in cached code region of AOT cache Reviewed-by: kvn, iklam ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveUtils.hpp ! src/hotspot/share/cds/cdsAccess.cpp ! src/hotspot/share/cds/cdsAccess.hpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/code/SCCache.cpp ! src/hotspot/share/code/SCCache.hpp ! src/hotspot/share/compiler/compiler_globals.hpp ! src/hotspot/share/compiler/precompiler.cpp ! src/hotspot/share/runtime/init.cpp ! test/hotspot/jtreg/premain/lib/DemoSupport.gmk ! test/lib/jdk/test/lib/cds/CDSAppTester.java From asmehra at openjdk.org Thu Feb 13 20:08:33 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 13 Feb 2025 20:08:33 GMT Subject: Integrated: Store AOT code in cached code region of AOT cache In-Reply-To: References: Message-ID: On Tue, 11 Feb 2025 22:15:24 GMT, Ashutosh Mehra wrote: > This PR stores AOT code in the cached code region of AOT Cache. > > Some things worth pointing out: > 1. Before this patch: the AOT code is first generated in a temporary buffer. After all the code is generated, this temporary buffer is copied into second buffer (allocated in native heap) for multiple reasons. This second buffer is then stored in the file as is. With this patch the second buffer is now allocated in the cached code region which is part of the AOT cache. So now the cached code region contains the permanent oops table (which already exists before this patch) and the AOT code+data. > 2. I have removed `_jvm_version_offset` from the SCCHeader. AOT Cache already stores VM identifier which should cover it. > ~3. I have to remove the code that maps cached code region to CodeCache because the contents in cached code region are not CodeBlobs. The cached code region can be mapped to any random address.~ > 4. I have replaced references to "Startup Code Cache" with "AOT Code Cache" or "AOT Code". This pull request has now been integrated. Changeset: bdbeaf25 Author: Ashutosh Mehra URL: https://git.openjdk.org/leyden/commit/bdbeaf2588fb9b02d98c1426c160236ea8ef763e Stats: 357 lines in 13 files changed: 47 ins; 194 del; 116 mod Store AOT code in cached code region of AOT cache Reviewed-by: kvn, iklam ------------- PR: https://git.openjdk.org/leyden/pull/39 From asmehra at openjdk.org Thu Feb 13 20:08:33 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 13 Feb 2025 20:08:33 GMT Subject: RFR: Store AOT code in cached code region of AOT cache [v3] In-Reply-To: <4gJsJqFdBjwIt9zpm5OD0Fq3IWUF0gXHKjSC1fo2FlM=.fec1838f-620c-4b9a-9fee-151cda4b651e@github.com> References: <4gJsJqFdBjwIt9zpm5OD0Fq3IWUF0gXHKjSC1fo2FlM=.fec1838f-620c-4b9a-9fee-151cda4b651e@github.com> Message-ID: On Wed, 12 Feb 2025 10:50:09 GMT, Aleksey Shipilev wrote: >> Minimal is tricky. Now SCCache depends on CDS archive, so ideally its functionality should be guarded by INCLUDE_CDS and other CDS related macros. > >> Minimal is tricky. Now SCCache depends on CDS archive, so ideally its functionality should be guarded by INCLUDE_CDS and other CDS related macros. > > Minimal is easy enough to fix, we just need to clearly introduce dependency on CDS, see #40. Thanks @shipilev @iklam @vnkozlov for the help and reviews. ------------- PR Comment: https://git.openjdk.org/leyden/pull/39#issuecomment-2657599213 From headius at headius.com Fri Feb 14 00:14:51 2025 From: headius at headius.com (Charles Oliver Nutter) Date: Thu, 13 Feb 2025 18:14:51 -0600 Subject: JRuby and JDK24 AOTCache experiment In-Reply-To: References: Message-ID: On Thu, Feb 13, 2025 at 12:36?PM wrote: > Which build of JDK 24 (or mainline) are you using? There's a recent change > that turns on -XX:+AOTClassLinking automatically to take advantage of all > JEP 483 optimizations (including the AOT-linking of lambdas) > > https://bugs.openjdk.org/browse/JDK-8348752 > > If you're using an older JDK 24 build (earlier than JDK 24-b35), you might > need to add -XX:+AOTClassLinking explicitly. > > A good way for checking is with -Xlog:cds,class+load and see how many > classes you are loading from CDS vs dynamically parsed. > I'm running the RC from last week: $ java -version openjdk version "24" 2025-03-18 OpenJDK Runtime Environment (build 24+36-3646) OpenJDK 64-Bit Server VM (build 24+36-3646, mixed mode, sharing) But perhaps the fix I need is not in this build? I ran the record and create steps again with -XX:+AOTClassLinking and performance wasn't substantially changed. I do see lines like this, though, when I enable logging: [0.895s][info][class,load] org.jruby.util.io.FilenoUtil$ReflectiveAccess$$Lambda/0x8000004ea source: shared objects file [0.895s][info][class,load] org.jruby.util.io.FilenoUtil$ReflectiveAccess$$Lambda/0x8000004eb source: shared objects file Thanks > > - Ioi > On 2/13/25 7:12 AM, Charles Oliver Nutter wrote: > > I figured folks here would be interested to see this experiment using > AOTCache with JRuby. > > https://gist.github.com/headius/1a5cfbc91ed8bacd194f1c592a90c275 > > I just test the 'hello world' scenario that represents our baseline > startup, but AOT caching manages to beat the automatic AppCDS startup by a > bit. More/better training might help here I'm guessing? > > This is from the JRuby 10 branch (10-dev) on > https://github.com/jruby/jruby.git if anyone wants to play with it. Just > run `./mvnw` and then `bin/ruby` will work. We recently added support for > AutoCreateSharedArchive so it will use CDS by default. Pass --nocache to > disable that behavior. > > *Charles Oliver Nutter* > *Architect and Technologist* > Headius Enterprises > https://www.headius.com > headius at headius.com > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From headius at headius.com Fri Feb 14 00:25:28 2025 From: headius at headius.com (Charles Oliver Nutter) Date: Thu, 13 Feb 2025 18:25:28 -0600 Subject: AppCDS, DynamicCDS, Leyden and JRuby In-Reply-To: References: <2f2c1035-e9e3-4390-8b0d-f31c6f513288@oracle.com> Message-ID: On Wed, Feb 12, 2025 at 4:22?PM Charles Oliver Nutter wrote: > Have you tried the -XX:+AutoCreateSharedArchive flag? It should recreate >> the dynamic archive if you have updated the app's JAR files or updated to a >> new JDK. >> > This is definitely what we want for the JRuby launcher! I've integrated it > into the launcher and it seems to work well (my log redirects must still be > included to silence CDS warnings, though): > I am seeing two peculiar warnings in the log file while using this flag: [0.001s][info][cds] optimized module handling: disabled due to incompatible property: jdk.module.path=/Users/headius/work/jruby/lib/jruby.jar This is not a property I'm setting. The full command line for this JRuby execution is here: /Library/Java/JavaVirtualMachines/zulu-21.jdk/Contents/Home/bin/java @/Users/headius/work/jruby/bin/.jruby.java_opts @/Users/headius/work/jruby/bin/.jruby.module_opts -Xss2048k -XX:+AutoCreateSharedArchive -XX:SharedArchiveFile=/Users/headius/work/jruby/lib/jruby.jsa -Xlog:cds=off -Xlog:cds+dynamic=off -Djffi.boot.library.path=/Users/headius/work/jruby/lib/jni -Djava.security.egd=file:/dev/urandom --module-path /Users/headius/work/jruby/lib/jruby.jar -classpath : -Djruby.home=/Users/headius/work/jruby -Djruby.lib=/Users/headius/work/jruby/lib -Djruby.script=jruby -Djruby.shell=/bin/sh org.jruby.Main -e 1 The java_opts file is empty and the module_opts file just has some add-opens we need. [0.001s][warning][cds] AutoCreateSharedArchive is ignored because /Users/headius/work/jruby/lib/jruby.jsa is a static archive I have no idea what this means. Once I get in this state it complains every startup and will also refuse to overwrite the "bad" jsa file. I had thought that it would overwrite the file if it could not use it, so I don't have to manually separate CDS archives from different JDKs... did I misunderstand? -------------- next part -------------- An HTML attachment was scrubbed... URL: From duke at openjdk.org Fri Feb 14 00:39:36 2025 From: duke at openjdk.org (duke) Date: Fri, 14 Feb 2025 00:39:36 GMT Subject: git: openjdk/leyden: hermetic-java-runtime: 40 new changesets Message-ID: Changeset: e7157d17 Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-11 19:22:35 +0000 URL: https://git.openjdk.org/leyden/commit/e7157d174c19a3562c4bf19760760cb1de13cb0e 8150442: Enforce Supported Platforms in Packager for MSI bundles Reviewed-by: almatvee, cstein ! make/modules/jdk.jpackage/Java.gmk ! src/jdk.jpackage/share/man/jpackage.md + src/jdk.jpackage/windows/classes/jdk/jpackage/internal/OSVersionCondition.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WinMsiBundler.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WixFragmentBuilder.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/MsiInstallerStrings_de.wxl ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/MsiInstallerStrings_en.wxl ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/MsiInstallerStrings_ja.wxl ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/MsiInstallerStrings_zh_CN.wxl ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/main.wxs + src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/os-condition.wxf ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/wix3-to-wix4-conv.xsl + test/jdk/tools/jpackage/junit/windows/jdk.jpackage/jdk/jpackage/internal/ExecutableOSVersionTest.java + test/jdk/tools/jpackage/junit/windows/junit.java Changeset: 8c09d40d Branch: hermetic-java-runtime Author: William Kemper Date: 2025-02-11 20:20:53 +0000 URL: https://git.openjdk.org/leyden/commit/8c09d40d6c345fda9fc7b358a53cae3b5965580b 8348268: Test gc/shenandoah/TestResizeTLAB.java#compact: fatal error: Before Updating References: Thread C2 CompilerThread1: expected gc-state 9, actual 21 Reviewed-by: shade ! src/hotspot/share/gc/shenandoah/shenandoahBarrierSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp Changeset: d558d9d4 Branch: hermetic-java-runtime Author: Volkan Yazici Committer: Jaikiran Pai Date: 2025-02-12 01:58:22 +0000 URL: https://git.openjdk.org/leyden/commit/d558d9d4274ecfd2df4d3ef38bae00ebab6ea325 8349702: jdk.internal.net.http.Http2Connection::putStream needs to provide cause while cancelling stream Reviewed-by: jpai, dfuchs ! src/java.net.http/share/classes/jdk/internal/net/http/Http2Connection.java ! test/jdk/java/net/httpclient/AsyncExecutorShutdown.java Changeset: 88b4a906 Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-12 03:00:43 +0000 URL: https://git.openjdk.org/leyden/commit/88b4a906d2c520ce6a7b21adc5e709067e520cdd 8349689: Several virtual thread tests missing /native keyword Reviewed-by: alanb, lmesnik ! test/jdk/java/lang/Thread/virtual/JfrEvents.java ! test/jdk/java/lang/Thread/virtual/MonitorEnterExit.java ! test/jdk/java/lang/Thread/virtual/MonitorWaitNotify.java ! test/jdk/java/lang/Thread/virtual/RetryMonitorEnterWhenPinned.java ! test/jdk/java/lang/Thread/virtual/Starvation.java ! test/jdk/java/lang/Thread/virtual/SynchronizedNative.java ! test/jdk/java/lang/Thread/virtual/ThreadAPI.java ! test/jdk/java/lang/Thread/virtual/ThreadPollOnYield.java ! test/jdk/java/lang/Thread/virtual/stress/GetStackTraceALotWhenPinned.java ! test/jdk/java/lang/Thread/virtual/stress/PinALot.java ! test/jdk/java/lang/management/ThreadMXBean/VirtualThreads.java ! test/jdk/java/nio/channels/vthread/SelectorOps.java Changeset: 342dec93 Branch: hermetic-java-runtime Author: Prasanta Sadhukhan Date: 2025-02-12 03:10:00 +0000 URL: https://git.openjdk.org/leyden/commit/342dec93f22193309aa8865df95eb19d659b082c 8347019: Test javax/swing/JRadioButton/8033699/bug8033699.java still fails: Focus is not on Radio Button Single as Expected Reviewed-by: aivanov, dnguyen, azvegint ! test/jdk/javax/swing/JRadioButton/8033699/bug8033699.java Changeset: adda12b7 Branch: hermetic-java-runtime Author: David Holmes Date: 2025-02-12 03:57:30 +0000 URL: https://git.openjdk.org/leyden/commit/adda12b724ec5fb890ef18ae21f0b5985ececfea 8349874: Missing comma in copyright from JDK-8349689 Reviewed-by: dcubed, mikael ! test/jdk/java/lang/Thread/virtual/Starvation.java Changeset: bb41df44 Branch: hermetic-java-runtime Author: Kevin Walls Date: 2025-02-12 08:22:29 +0000 URL: https://git.openjdk.org/leyden/commit/bb41df44d95cb4cadb8a18b3f999d35e169b35d3 8349723: Problemlist jdp tests for macosx-x64 Reviewed-by: rriggs, sspitsyn ! test/jdk/ProblemList.txt Changeset: 08f4c1c8 Branch: hermetic-java-runtime Author: Daniel Jeli?ski Date: 2025-02-12 09:04:32 +0000 URL: https://git.openjdk.org/leyden/commit/08f4c1c801c8c3553c1380e1d019a487bd0a25ea 8349781: make test TEST=gtest fails on WSL Reviewed-by: erikj ! make/RunTests.gmk Changeset: e700460b Branch: hermetic-java-runtime Author: Volkan Yazici Committer: Daniel Fuchs Date: 2025-02-12 12:04:22 +0000 URL: https://git.openjdk.org/leyden/commit/e700460b490e2b6649a61dc48e7d971b8efdb8c4 8349813: Test behavior of limiting() on RS operators throwing exceptions Reviewed-by: dfuchs ! test/jdk/java/net/httpclient/AbstractThrowingSubscribers.java + test/jdk/java/net/httpclient/ThrowingSubscribersAsLimiting.java + test/jdk/java/net/httpclient/ThrowingSubscribersAsLimitingAsync.java Changeset: ed17c55e Branch: hermetic-java-runtime Author: Coleen Phillimore Date: 2025-02-12 12:04:40 +0000 URL: https://git.openjdk.org/leyden/commit/ed17c55ea34b3b6009dab11d64f21e0b7af3d701 8349145: Make Class.getProtectionDomain() non-native Reviewed-by: liach, dholmes, yzheng ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/prims/jvm.cpp ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/System.java ! src/java.base/share/classes/jdk/internal/reflect/Reflection.java ! src/java.base/share/native/libjava/Class.c ! test/hotspot/gtest/oops/test_instanceKlass.cpp ! test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaType.java ! test/jdk/java/lang/reflect/AccessibleObject/ModuleSetAccessibleTest.java ! test/jdk/java/lang/reflect/AccessibleObject/TrySetAccessibleTest.java ! test/jdk/jdk/internal/reflect/Reflection/Filtering.java Changeset: 73e1780a Branch: hermetic-java-runtime Author: Thomas Schatzl Date: 2025-02-12 16:11:09 +0000 URL: https://git.openjdk.org/leyden/commit/73e1780ad0aba92ce60bb35fc66a395abccbf57e 8349836: G1: Improve group prediction log message Reviewed-by: ayang, iwalulya ! src/hotspot/share/gc/g1/g1CollectionSetCandidates.cpp Changeset: 332d87cc Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-12 16:29:08 +0000 URL: https://git.openjdk.org/leyden/commit/332d87cc7e19d55ddb98a43a6eb3a77f3518ecfd 8349859: Support static JDK in libfontmanager/freetypeScaler.c Reviewed-by: prr ! make/modules/java.desktop/lib/ClientLibraries.gmk ! src/java.desktop/share/native/libfontmanager/freetypeScaler.c Changeset: 4b463ee7 Branch: hermetic-java-runtime Author: Jatin Bhateja Date: 2025-02-12 17:02:51 +0000 URL: https://git.openjdk.org/leyden/commit/4b463ee70eceb94fdfbffa5c49dd58dcc6a6c890 8342103: C2 compiler support for Float16 type and associated scalar operations Co-authored-by: Paul Sandoz Co-authored-by: Bhavana Kilambi Co-authored-by: Joe Darcy Co-authored-by: Raffaello Giulietti Reviewed-by: psandoz, epeter, sviswanathan ! src/hotspot/cpu/x86/assembler_x86.cpp ! src/hotspot/cpu/x86/assembler_x86.hpp ! src/hotspot/cpu/x86/c2_MacroAssembler_x86.cpp ! src/hotspot/cpu/x86/c2_MacroAssembler_x86.hpp ! src/hotspot/cpu/x86/vm_version_x86.cpp ! src/hotspot/cpu/x86/vm_version_x86.hpp ! src/hotspot/cpu/x86/x86.ad ! src/hotspot/cpu/x86/x86_64.ad ! src/hotspot/share/adlc/archDesc.cpp ! src/hotspot/share/adlc/forms.cpp ! src/hotspot/share/adlc/forms.hpp ! src/hotspot/share/adlc/formssel.cpp ! src/hotspot/share/adlc/output_c.cpp ! src/hotspot/share/adlc/output_h.cpp ! src/hotspot/share/classfile/vmIntrinsics.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/opto/addnode.cpp ! src/hotspot/share/opto/addnode.hpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/castnode.cpp ! src/hotspot/share/opto/castnode.hpp ! src/hotspot/share/opto/classes.hpp ! src/hotspot/share/opto/connode.cpp ! src/hotspot/share/opto/connode.hpp ! src/hotspot/share/opto/constantTable.cpp ! src/hotspot/share/opto/convertnode.cpp ! src/hotspot/share/opto/convertnode.hpp ! src/hotspot/share/opto/divnode.cpp ! src/hotspot/share/opto/divnode.hpp ! src/hotspot/share/opto/escape.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/library_call.hpp ! src/hotspot/share/opto/machnode.cpp ! src/hotspot/share/opto/machnode.hpp ! src/hotspot/share/opto/matcher.cpp ! src/hotspot/share/opto/mulnode.cpp ! src/hotspot/share/opto/mulnode.hpp ! src/hotspot/share/opto/node.cpp ! src/hotspot/share/opto/node.hpp ! src/hotspot/share/opto/subnode.cpp ! src/hotspot/share/opto/subnode.hpp ! src/hotspot/share/opto/superword.cpp ! src/hotspot/share/opto/type.cpp ! src/hotspot/share/opto/type.hpp ! src/hotspot/share/utilities/globalDefinitions.hpp + src/java.base/share/classes/jdk/internal/vm/vector/Float16Math.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/Float16.java ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/amd64/AMD64.java + test/hotspot/jtreg/compiler/c2/irTests/ConvF2HFIdealizationTests.java + test/hotspot/jtreg/compiler/c2/irTests/MulHFNodeIdealizationTests.java + test/hotspot/jtreg/compiler/c2/irTests/TestFloat16ScalarOperations.java ! test/hotspot/jtreg/compiler/lib/ir_framework/IRNode.java ! test/hotspot/jtreg/compiler/lib/ir_framework/test/IREncodingPrinter.java ! test/hotspot/jtreg/compiler/vectorization/TestFloat16VectorConvChain.java + test/jdk/jdk/incubator/vector/ScalarFloat16OperationsTest.java + test/micro/org/openjdk/bench/jdk/incubator/vector/Float16OperationsBenchmark.java Changeset: 336d0d85 Branch: hermetic-java-runtime Author: Vladimir Kozlov Date: 2025-02-12 18:26:37 +0000 URL: https://git.openjdk.org/leyden/commit/336d0d8592aed734e7b8139e1ecd71d33825c75a 8349926: [BACKOUT] Support static JDK in libfontmanager/freetypeScaler.c Reviewed-by: jiangli, shade ! make/modules/java.desktop/lib/ClientLibraries.gmk ! src/java.desktop/share/native/libfontmanager/freetypeScaler.c Changeset: c5ac3c4f Branch: hermetic-java-runtime Author: Fernando Guallini Committer: Rajan Halade Date: 2025-02-12 18:36:24 +0000 URL: https://git.openjdk.org/leyden/commit/c5ac3c4f11e777b24d597deec522c9df09750f59 8249831: Test sun/security/mscapi/nonUniqueAliases/NonUniqueAliases.java is marked with @ignore Reviewed-by: hchao, rhalade ! test/jdk/sun/security/mscapi/nonUniqueAliases/NonUniqueAliases.java Changeset: ba281196 Branch: hermetic-java-runtime Author: Archie Cobbs Date: 2025-02-12 19:17:29 +0000 URL: https://git.openjdk.org/leyden/commit/ba28119642a7cfa850707a01ce8e589c3a80d416 8348427: DeferredLintHandler API should use JCTree instead of DiagnosticPosition Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/DeferredLintHandler.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Annotate.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Enter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/MemberEnter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Modules.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/TypeEnter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/parser/JavacParser.java Changeset: 74e458ba Branch: hermetic-java-runtime Author: Chris Plummer Date: 2025-02-12 19:27:54 +0000 URL: https://git.openjdk.org/leyden/commit/74e458bad6ba6e8aa85e0950119963a6f6cb2c03 8349684: Remove SA core file tests from problem list for macosx-x64 Reviewed-by: kevinw, sspitsyn ! test/hotspot/jtreg/ProblemList.txt Changeset: 2a5d1da3 Branch: hermetic-java-runtime Author: Chris Plummer Date: 2025-02-12 19:28:28 +0000 URL: https://git.openjdk.org/leyden/commit/2a5d1da3355a4df3109ec42646b5b0cf088b4c2a 8349571: Remove JavaThreadFactory interface from SA Reviewed-by: kevinw, sspitsyn - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/JavaThreadFactory.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Threads.java Changeset: 7a0832f5 Branch: hermetic-java-runtime Author: Zhao Song Committer: Erik Joelsson Date: 2025-02-12 21:36:45 +0000 URL: https://git.openjdk.org/leyden/commit/7a0832f5487cb7586131f6c4e0b90300f6de5dec 8349934: Wrong file regex for copyright header format check in .jcheck/conf Reviewed-by: erikj ! .jcheck/conf Changeset: b8576eb4 Branch: hermetic-java-runtime Author: Daniel Gredler Committer: Phil Race Date: 2025-02-12 22:15:37 +0000 URL: https://git.openjdk.org/leyden/commit/b8576eb48e6aae96f9bad1caeedaeb4b5b675e34 6562489: Font-Renderer should ignore invisible characters \u2062 and \u2063 Reviewed-by: avu, prr ! test/jdk/java/awt/font/TextLayout/FormatCharAdvanceTest.java Changeset: 55097dd4 Branch: hermetic-java-runtime Author: Volodymyr Paprotski Date: 2025-02-12 22:25:05 +0000 URL: https://git.openjdk.org/leyden/commit/55097dd4cbb5d691c12cb0247d66dce593759d59 8344802: Crash in StubRoutines::verify_mxcsr with -XX:+EnableX86ECoreOpts and -Xcheck:jni Reviewed-by: jwaters, kvn, sviswanathan ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.hpp ! src/hotspot/cpu/x86/stubGenerator_x86_32.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/cpu/x86/upcallLinker_x86_64.cpp ! src/hotspot/os/windows/os_windows.cpp ! src/hotspot/os_cpu/windows_x86/os_windows_x86.cpp ! test/jdk/java/lang/String/IndexOf.java ! test/jdk/java/lang/StringBuffer/ECoreIndexOf.java Changeset: adc3f53d Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-13 02:59:57 +0000 URL: https://git.openjdk.org/leyden/commit/adc3f53d2403cd414a91e71c079b4108b2346da0 8349787: java/lang/Thread/virtual/ThreadPollOnYield.java#default passes unexpectedly without libVThreadPinner.so Reviewed-by: alanb ! test/jdk/java/lang/Thread/virtual/ThreadPollOnYield.java Changeset: a637ccf2 Branch: hermetic-java-runtime Author: Robbin Ehn Date: 2025-02-13 06:36:32 +0000 URL: https://git.openjdk.org/leyden/commit/a637ccf2fead25ea6a06ad6bd65e92b8694ee11c 8349851: RISC-V: Call VM leaf can use movptr2 Reviewed-by: fyang, mli ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp Changeset: 24b7f815 Branch: hermetic-java-runtime Author: Ivan Walulya Date: 2025-02-13 09:47:02 +0000 URL: https://git.openjdk.org/leyden/commit/24b7f815ae4ca2a228dff2694993b5ebc2192382 8349783: g1RemSetSummary.cpp:344:68: runtime error: member call on null pointer of type 'struct G1HeapRegion' Reviewed-by: tschatzl, ayang ! src/hotspot/share/gc/g1/g1RemSetSummary.cpp Changeset: 29202d1f Branch: hermetic-java-runtime Author: Christoph Langer Date: 2025-02-13 10:03:25 +0000 URL: https://git.openjdk.org/leyden/commit/29202d1fa7fc35796a5d2c9425eeb3e12f8c027a 8349648: Test tools/jpackage/share/JLinkOptionsTest.java fails with --enable-linkable-runtime set after JDK-8346434 Reviewed-by: sgehwolf, asemenyuk ! test/jdk/tools/jpackage/share/JLinkOptionsTest.java Changeset: efc597bf Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-13 10:22:19 +0000 URL: https://git.openjdk.org/leyden/commit/efc597bf47bff46596bb29b03b5750bfc5afe851 8349564: Clean warnings found in jpackage tests when building them with -Xlint:all Reviewed-by: almatvee ! test/jdk/tools/jpackage/apps/ChildProcessAppLauncher.java ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/AnnotationsTest.java ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/DirectoryContentVerifierTest.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/AdditionalLauncher.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Comm.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/CommandArguments.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Executor.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Functional.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/HelloApp.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/LauncherIconVerifier.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/LinuxHelper.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/MacHelper.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/MethodCall.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/PackageTest.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/PackageType.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TKit.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestBuilder.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestInstance.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestMethodSupplier.java ! test/jdk/tools/jpackage/linux/LinuxResourceTest.java ! test/jdk/tools/jpackage/linux/LinuxWeirdOutputDirTest.java ! test/jdk/tools/jpackage/linux/PackageDepsTest.java ! test/jdk/tools/jpackage/linux/ServiceAndDesktopTest.java ! test/jdk/tools/jpackage/linux/ShortcutHintTest.java ! test/jdk/tools/jpackage/linux/UpgradeTest.java ! test/jdk/tools/jpackage/linux/UsrTreeTest.java ! test/jdk/tools/jpackage/macosx/ArgumentsFilteringTest.java ! test/jdk/tools/jpackage/macosx/DmgContentTest.java ! test/jdk/tools/jpackage/macosx/HostArchPkgTest.java ! test/jdk/tools/jpackage/macosx/MacPropertiesTest.java ! test/jdk/tools/jpackage/macosx/NameWithSpaceTest.java ! test/jdk/tools/jpackage/macosx/SigningOptionsTest.java ! test/jdk/tools/jpackage/macosx/base/SigningBase.java ! test/jdk/tools/jpackage/macosx/base/SigningCheck.java ! test/jdk/tools/jpackage/share/AddLShortcutTest.java ! test/jdk/tools/jpackage/share/AddLauncherTest.java ! test/jdk/tools/jpackage/share/AppContentTest.java ! test/jdk/tools/jpackage/share/AppImagePackageTest.java ! test/jdk/tools/jpackage/share/AppVersionTest.java ! test/jdk/tools/jpackage/share/ArgumentsTest.java ! test/jdk/tools/jpackage/share/BasicTest.java ! test/jdk/tools/jpackage/share/CookedRuntimeTest.java ! test/jdk/tools/jpackage/share/DotInNameTest.java ! test/jdk/tools/jpackage/share/ErrorTest.java ! test/jdk/tools/jpackage/share/FileAssociationsTest.java ! test/jdk/tools/jpackage/share/IconTest.java ! test/jdk/tools/jpackage/share/InOutPathTest.java ! test/jdk/tools/jpackage/share/InstallDirTest.java ! test/jdk/tools/jpackage/share/JLinkOptionsTest.java ! test/jdk/tools/jpackage/share/JavaOptionsEqualsTest.java ! test/jdk/tools/jpackage/share/JavaOptionsTest.java ! test/jdk/tools/jpackage/share/LicenseTest.java ! test/jdk/tools/jpackage/share/MainClassTest.java ! test/jdk/tools/jpackage/share/ModulePathTest.java ! test/jdk/tools/jpackage/share/ModulePathTest2.java ! test/jdk/tools/jpackage/share/ModulePathTest3.java ! test/jdk/tools/jpackage/share/MultiLauncherTwoPhaseTest.java ! test/jdk/tools/jpackage/share/MultiNameTwoPhaseTest.java ! test/jdk/tools/jpackage/share/MultipleJarAppTest.java ! test/jdk/tools/jpackage/share/NoMPathRuntimeTest.java ! test/jdk/tools/jpackage/share/NonExistentTest.java ! test/jdk/tools/jpackage/share/PerUserCfgTest.java ! test/jdk/tools/jpackage/share/PredefinedAppImageErrorTest.java ! test/jdk/tools/jpackage/share/RuntimeImageSymbolicLinksTest.java ! test/jdk/tools/jpackage/share/RuntimeImageTest.java ! test/jdk/tools/jpackage/share/RuntimePackageTest.java ! test/jdk/tools/jpackage/share/ServiceTest.java ! test/jdk/tools/jpackage/share/SimplePackageTest.java ! test/jdk/tools/jpackage/share/UnicodeArgsTest.java ! test/jdk/tools/jpackage/share/VendorTest.java ! test/jdk/tools/jpackage/windows/Win8282351Test.java ! test/jdk/tools/jpackage/windows/WinConsoleTest.java ! test/jdk/tools/jpackage/windows/WinInstallerIconTest.java ! test/jdk/tools/jpackage/windows/WinL10nTest.java ! test/jdk/tools/jpackage/windows/WinLongPathTest.java ! test/jdk/tools/jpackage/windows/WinLongVersionTest.java ! test/jdk/tools/jpackage/windows/WinMenuGroupTest.java ! test/jdk/tools/jpackage/windows/WinMenuTest.java ! test/jdk/tools/jpackage/windows/WinPerUserInstallTest.java ! test/jdk/tools/jpackage/windows/WinResourceTest.java ! test/jdk/tools/jpackage/windows/WinScriptTest.java ! test/jdk/tools/jpackage/windows/WinShortcutTest.java ! test/jdk/tools/jpackage/windows/WinUpgradeUUIDTest.java Changeset: add3cd1c Branch: hermetic-java-runtime Author: Alexander Zvegintsev Date: 2025-02-13 11:42:46 +0000 URL: https://git.openjdk.org/leyden/commit/add3cd1ca470be8fd5e5e1930d7f789318eb8e6d 8348600: Update PipeWire to 1.3.81 Reviewed-by: psadhukhan, prr, honkar ! src/java.desktop/unix/legal/pipewire.md ! src/java.desktop/unix/native/libpipewire/include/pipewire/context.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/core.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/keys.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/loop.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/port.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/properties.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/protocol.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/proxy.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/stream.h + src/java.desktop/unix/native/libpipewire/include/pipewire/type.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/buffer/buffer.h ! src/java.desktop/unix/native/libpipewire/include/spa/buffer/meta.h ! src/java.desktop/unix/native/libpipewire/include/spa/buffer/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/control/control.h ! src/java.desktop/unix/native/libpipewire/include/spa/control/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/debug/types.h ! src/java.desktop/unix/native/libpipewire/include/spa/node/io.h ! src/java.desktop/unix/native/libpipewire/include/spa/node/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/aac-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/aac.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/amr-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/amr.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/iec958-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/mp3-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/mp3.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/raw-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/raw.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/wma-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/wma.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/bluetooth/audio.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/bluetooth/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/buffers-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/buffers.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/format-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/format.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/latency.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/param-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/param.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/profiler-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/profiler.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/props-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/props.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/route-types.h + src/java.desktop/unix/native/libpipewire/include/spa/param/tag-types.h + src/java.desktop/unix/native/libpipewire/include/spa/param/tag.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/dsp-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/format-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/h264-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/mjpg-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/multiview.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/raw-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/raw-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/raw.h ! src/java.desktop/unix/native/libpipewire/include/spa/pod/builder.h ! src/java.desktop/unix/native/libpipewire/include/spa/pod/event.h ! src/java.desktop/unix/native/libpipewire/include/spa/pod/iter.h ! src/java.desktop/unix/native/libpipewire/include/spa/pod/parser.h ! src/java.desktop/unix/native/libpipewire/include/spa/support/loop.h ! src/java.desktop/unix/native/libpipewire/include/spa/support/system.h + src/java.desktop/unix/native/libpipewire/include/spa/utils/cleanup.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/defs.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/dict.h + src/java.desktop/unix/native/libpipewire/include/spa/utils/endian.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/enum-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/hook.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/list.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/string.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/type.h Changeset: 5b75ff72 Branch: hermetic-java-runtime Author: Jaikiran Pai Date: 2025-02-13 11:54:01 +0000 URL: https://git.openjdk.org/leyden/commit/5b75ff7283340291bc87f83aba0e4416479899e3 8349907: jdk.tools.jlink.internal.plugins.ZipPlugin does not close the Deflater in exceptional cases Reviewed-by: liach, alanb, sundar, lancea ! src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ZipPlugin.java Changeset: c2fc9478 Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-13 14:16:23 +0000 URL: https://git.openjdk.org/leyden/commit/c2fc94782669ae1645014ee3bfeba957dbff4669 8349378: Build splashscreen lib with SIZE optimization Reviewed-by: erikj, prr, honkar ! make/modules/java.desktop/lib/ClientLibraries.gmk Changeset: 18958c62 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-13 15:44:46 +0000 URL: https://git.openjdk.org/leyden/commit/18958c6298bf5cc5495375e2940b640b04ec9ccb 8349925: [REDO] Support static JDK in libfontmanager/freetypeScaler.c Reviewed-by: prr ! make/modules/java.desktop/lib/ClientLibraries.gmk ! src/java.desktop/share/native/libfontmanager/freetypeScaler.c Changeset: 0b50e479 Branch: hermetic-java-runtime Author: Vladimir Kozlov Date: 2025-02-13 16:09:04 +0000 URL: https://git.openjdk.org/leyden/commit/0b50e479a060cf745a3e858d535516444fe80fd8 8349753: Incorrect use of CodeBlob::is_buffer_blob() in few places Reviewed-by: dlong, shade ! src/hotspot/share/code/codeBlob.cpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/prims/jvmtiCodeBlobEvents.cpp ! test/hotspot/jtreg/compiler/codecache/CheckCodeCacheInfo.java Changeset: 28e744dc Branch: hermetic-java-runtime Author: William Kemper Date: 2025-02-13 16:34:37 +0000 URL: https://git.openjdk.org/leyden/commit/28e744dc642db8ebe376403f28630438a5ee3f44 8348092: Shenandoah: assert(nk >= _lowest_valid_narrow_klass_id && nk <= _highest_valid_narrow_klass_id) failed: narrowKlass ID out of range (3131947710) Reviewed-by: shade ! src/hotspot/share/gc/shenandoah/shenandoahConcurrentGC.cpp Changeset: 6ddbcc34 Branch: hermetic-java-runtime Author: Martin Balao Date: 2025-02-13 16:55:33 +0000 URL: https://git.openjdk.org/leyden/commit/6ddbcc34c019d780fc12d8f636e3aa3de33ecaaa 8328119: Support HKDF in SunPKCS11 (Preview) 8346720: Support Generic keys in SunPKCS11 SecretKeyFactory Co-authored-by: Francisco Ferrari Bihurriet Co-authored-by: Martin Balao Reviewed-by: valeriep, kdriver, weijun ! src/java.base/share/classes/module-info.java ! src/jdk.crypto.cryptoki/share/classes/module-info.java + src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11HKDF.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11Key.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11Mac.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11SecretKeyFactory.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/SunPKCS11.java + src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/CK_HKDF_PARAMS.java + src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/CK_KEY_DERIVATION_STRING_DATA.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/CK_MECHANISM.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/Functions.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/PKCS11Constants.java ! src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_convert.c ! src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_util.c ! src/jdk.crypto.cryptoki/share/native/libj2pkcs11/pkcs11wrapper.h + test/jdk/sun/security/pkcs11/KDF/TestHKDF.java Changeset: 2eac490b Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-13 19:08:03 +0000 URL: https://git.openjdk.org/leyden/commit/2eac490bd22f5488a60e59f93ce54d4babf33c23 8349868: Remove unneeded libjava shared library dependency from jtreg test libNewDirectByteBuffer, libDirectIO and libInheritedChannel Reviewed-by: bpb ! make/test/JtregNativeJdk.gmk Changeset: a88e2a58 Branch: hermetic-java-runtime Author: Doug Simon Date: 2025-02-13 19:35:42 +0000 URL: https://git.openjdk.org/leyden/commit/a88e2a58bf834081db55c2071d072567ea763354 8349977: JVMCIRuntime::_shared_library_javavm_id should be jlong Reviewed-by: yzheng, never ! src/hotspot/share/jvmci/jvmciCompilerToVM.cpp ! src/hotspot/share/jvmci/jvmciRuntime.cpp ! src/hotspot/share/jvmci/jvmciRuntime.hpp Changeset: d8fcd43a Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-13 20:06:33 +0000 URL: https://git.openjdk.org/leyden/commit/d8fcd43a24a989b71ed30945fda78541c1e42b60 8349927: Waiting for compiler termination delays shutdown for 10+ ms Reviewed-by: kvn, dholmes ! src/hotspot/share/runtime/vmOperations.cpp Changeset: 3e7acfac Branch: hermetic-java-runtime Author: Naoto Sato Date: 2025-02-13 20:57:48 +0000 URL: https://git.openjdk.org/leyden/commit/3e7acfac48229441b243a6ac564e719963e4f43d 8349873: StackOverflowError after JDK-8342550 if -Duser.timezone= is set to a deprecated zone id Reviewed-by: joehw, jlu, iris ! src/java.base/share/classes/java/util/TimeZone.java ! test/jdk/java/util/TimeZone/ThreeLetterZoneID.java Changeset: 3741c980 Branch: hermetic-java-runtime Author: Justin Lu Date: 2025-02-13 22:25:23 +0000 URL: https://git.openjdk.org/leyden/commit/3741c980b865b7122d07655353657d683923c40d 8349883: Locale.LanguageRange.parse("-") throws ArrayIndexOutOfBoundsException Reviewed-by: naoto ! src/java.base/share/classes/java/util/Locale.java - test/jdk/java/util/Locale/LRToString.java ! test/jdk/java/util/Locale/LanguageRangeTest.java Changeset: ff52859d Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-13 22:53:30 +0000 URL: https://git.openjdk.org/leyden/commit/ff52859d2ad65b97c56dd19323213a0d07be47ae 8285624: jpackage fails to create exe, msi when Windows OS is in FIPS mode Reviewed-by: almatvee ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WixPipeline.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WixTool.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WixToolset.java Changeset: 69e8114b Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-13 16:38:12 +0000 URL: https://git.openjdk.org/leyden/commit/69e8114b07e53732002a5143933cc22462878d2f Merge branch 'master' into hermetic-java-runtime ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/utilities/globalDefinitions.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/utilities/globalDefinitions.hpp From asmehra at openjdk.org Fri Feb 14 03:10:05 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Fri, 14 Feb 2025 03:10:05 GMT Subject: RFR: Fix SCCache stats logged on exit Message-ID: The count of various SCCEntry kinds is not correctly computed. This patch fixes it. This code was introduced as part of i2c2i adapters and was picked up from Andrew Dinn's work on storing stub and blobs. Clearly I messed it up. The patch also computes and shows the counts for old entries and new entries separately. Though not useful for now, but in incremental workflow it may be helpful to distinguish between the old and new entries. ------------- Commit messages: - Fix whitespace errors - Fix SCCache stats logged on exit Changes: https://git.openjdk.org/leyden/pull/42/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=42&range=00 Stats: 50 lines in 1 file changed: 13 ins; 6 del; 31 mod Patch: https://git.openjdk.org/leyden/pull/42.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/42/head:pull/42 PR: https://git.openjdk.org/leyden/pull/42 From ioi.lam at oracle.com Fri Feb 14 03:25:53 2025 From: ioi.lam at oracle.com (ioi.lam at oracle.com) Date: Thu, 13 Feb 2025 19:25:53 -0800 Subject: JRuby and JDK24 AOTCache experiment In-Reply-To: References: Message-ID: <218cf018-c331-4b68-8811-ef1a332057c5@oracle.com> On 2/13/25 4:14 PM, Charles Oliver Nutter wrote: > On Thu, Feb 13, 2025 at 12:36?PM wrote: > > Which build of JDK 24 (or mainline) are you using? There's a > recent change that turns on -XX:+AOTClassLinking automatically to > take advantage of all JEP 483 optimizations (including the > AOT-linking of lambdas) > > https://bugs.openjdk.org/browse/JDK-8348752 > > If you're using an older JDK 24 build (earlier than JDK 24-b35), > you might need to add -XX:+AOTClassLinking explicitly. > > A good way for checking is with -Xlog:cds,class+load and see how > many classes you are loading from CDS vs dynamically parsed. > > I'm running the RC from last week: > > $ java -version > openjdk version "24" 2025-03-18 > OpenJDK Runtime Environment (build 24+36-3646) > OpenJDK 64-Bit Server VM (build 24+36-3646, mixed mode, sharing) > > But perhaps the fix I need is not in this build? I ran the record and > create steps again with -XX:+AOTClassLinking and performance wasn't > substantially changed. > > I do see lines like this, though, when I enable logging: > > [0.895s][info][class,load] > org.jruby.util.io.FilenoUtil$ReflectiveAccess$$Lambda/0x8000004ea > source: shared objects file > [0.895s][info][class,load] > org.jruby.util.io.FilenoUtil$ReflectiveAccess$$Lambda/0x8000004eb > source: shared objects file > 24+36 should have the fix, so -XX:+AOTClassLinking should be enabled for you. You can check for this log to confirm: [0.022s][info][cds] Using AOT-linked classes: true (static archive: has aot-linked classes) Thanks - Ioi > Thanks > > - Ioi > > On 2/13/25 7:12 AM, Charles Oliver Nutter wrote: >> I figured folks here would be interested to see this experiment >> using AOTCache with JRuby. >> >> https://gist.github.com/headius/1a5cfbc91ed8bacd194f1c592a90c275 >> >> >> I just test the 'hello world' scenario that represents our >> baseline startup, but AOT caching manages to beat the automatic >> AppCDS startup by a bit. More/better training might help here I'm >> guessing? >> >> This is from the JRuby 10 branch (10-dev) on >> https://github.com/jruby/jruby.git >> >> if anyone wants to play with it. Just run `./mvnw` and then >> `bin/ruby` will work. We recently added support for >> AutoCreateSharedArchive so it will use CDS by default. Pass >> --nocache to disable that behavior. >> >> *Charles Oliver Nutter* >> /Architect and Technologist/ >> Headius Enterprises >> https://www.headius.com >> >> >> headius at headius.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ioi.lam at oracle.com Fri Feb 14 04:59:18 2025 From: ioi.lam at oracle.com (ioi.lam at oracle.com) Date: Thu, 13 Feb 2025 20:59:18 -0800 Subject: AppCDS, DynamicCDS, Leyden and JRuby In-Reply-To: References: <2f2c1035-e9e3-4390-8b0d-f31c6f513288@oracle.com> Message-ID: <972949ef-4c4b-453f-8874-6dbb8cef068f@oracle.com> On 2/13/25 4:25 PM, Charles Oliver Nutter wrote: > On Wed, Feb 12, 2025 at 4:22?PM Charles Oliver Nutter > wrote: > > Have you tried the -XX:+AutoCreateSharedArchive flag? It > should recreate the dynamic archive if you have updated the > app's JAR files or updated to a new JDK. > > This is definitely what we want for the JRuby launcher! I've > integrated it into the launcher and it seems to work well (my log > redirects must still be included to silence CDS warnings, though): > > > I am seeing two peculiar warnings in the log file while using this flag: > > [0.001s][info][cds] optimized module handling: disabled due to > incompatible property: > jdk.module.path=/Users/headius/work/jruby/lib/jruby.jar > > This is not a property I'm setting. The full command line for this > JRuby execution is here: > > /Library/Java/JavaVirtualMachines/zulu-21.jdk/Contents/Home/bin/java > @/Users/headius/work/jruby/bin/.jruby.java_opts > @/Users/headius/work/jruby/bin/.jruby.module_opts -Xss2048k > -XX:+AutoCreateSharedArchive > -XX:SharedArchiveFile=/Users/headius/work/jruby/lib/jruby.jsa > -Xlog:cds=off -Xlog:cds+dynamic=off > -Djffi.boot.library.path=/Users/headius/work/jruby/lib/jni > -Djava.security.egd=file:/dev/urandom --module-path > /Users/headius/work/jruby/lib/jruby.jar -classpath : > -Djruby.home=/Users/headius/work/jruby > -Djruby.lib=/Users/headius/work/jruby/lib -Djruby.script=jruby > -Djruby.shell=/bin/sh org.jruby.Main -e 1 > That message is a bit cryptic. Basically "--module-path dir" gets translated to "-Djdk.module.path=dir" by the Java launcher. Because of that, the archived module graph in the default CDS archive cannot be used. This is normal in your use case. > The java_opts file is empty and the module_opts file just has some > add-opens we need. > > [0.001s][warning][cds] AutoCreateSharedArchive is ignored because > /Users/headius/work/jruby/lib/jruby.jsa is a static archive > > I have no idea what this means. Once I get in this state it complains > every startup and will also refuse to overwrite the "bad" jsa file. I > had thought that it would overwrite the file if it could not use it, > so I don't have to manually separate CDS archives from different > JDKs... did I misunderstand? Did you create /Users/headius/work/jruby/lib/jruby.jsa with "java -Xshare:dump" or "java -XX:AOTMode=create"? If so, it will be recognized as a "static archive". I created https://bugs.openjdk.org/browse/JDK-8350057 to address this issue. If you want to work around this bug, you can check the magic number of the file: https://github.com/openjdk/jdk/blob/ff52859d2ad65b97c56dd19323213a0d07be47ae/src/hotspot/share/include/cds.h#L39-L40 #define CDS_ARCHIVE_MAGIC 0xf00baba2 #define CDS_DYNAMIC_ARCHIVE_MAGIC 0xf00baba8 If the magic number is not 0xf00baba8, you can delete the file before running with "java -XX:+AutoCreateSharedArchive -XX:SharedArchiveFile=..." Thanks - Ioi -------------- next part -------------- An HTML attachment was scrubbed... URL: From duke at openjdk.org Fri Feb 14 05:33:03 2025 From: duke at openjdk.org (duke) Date: Fri, 14 Feb 2025 05:33:03 GMT Subject: git: openjdk/leyden: premain: Exclude tests affected by JDK-8350059 Message-ID: <5d8581f8-d419-4fe2-8fa7-858c307e0064@openjdk.org> Changeset: dcac4d3e Branch: premain Author: iklam Date: 2025-02-13 21:31:57 +0000 URL: https://git.openjdk.org/leyden/commit/dcac4d3eec36aa446c39cd55c21fa77a8962e53c Exclude tests affected by JDK-8350059 ! test/hotspot/jtreg/ProblemList.txt From shade at openjdk.org Fri Feb 14 16:31:06 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 14 Feb 2025 16:31:06 GMT Subject: RFR: 8350115: [leyden] Clean up name_and_sig_as_C_string uses Message-ID: Profiles show that various `name_and_sig_as_C_string` are taking about 1.2% in Leyden benchmark profiles. We should sweep those up into conditional log statements and/or common the paths where we actually need these names outside of logging. After this fix, the profile impact of `name_and_sig_as_C_string` is `<0.05%`. ------------- Commit messages: - Fix Changes: https://git.openjdk.org/leyden/pull/43/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=43&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8350115 Stats: 16 lines in 1 file changed: 5 ins; 3 del; 8 mod Patch: https://git.openjdk.org/leyden/pull/43.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/43/head:pull/43 PR: https://git.openjdk.org/leyden/pull/43 From asmehra at openjdk.org Fri Feb 14 17:39:19 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Fri, 14 Feb 2025 17:39:19 GMT Subject: RFR: 8350115: [leyden] Clean up name_and_sig_as_C_string uses In-Reply-To: References: Message-ID: On Fri, 14 Feb 2025 16:26:05 GMT, Aleksey Shipilev wrote: > Now that we have optimized a lot of unnecessary compilations, profiles show that various `name_and_sig_as_C_string` are taking about 1.2% in Leyden benchmark profiles. We should sweep those up into conditional log statements and/or common the paths where we actually need these names outside of logging. > > After this fix, the profile impact of `name_and_sig_as_C_string` is `<0.05%`. > > Performance impact on benchmarks is currently hidden by benchmark noise. lgtm ------------- Marked as reviewed by asmehra (Committer). PR Review: https://git.openjdk.org/leyden/pull/43#pullrequestreview-2618433248 From kvn at openjdk.org Fri Feb 14 17:45:24 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Fri, 14 Feb 2025 17:45:24 GMT Subject: RFR: Fix SCCache stats logged on exit In-Reply-To: References: Message-ID: On Fri, 14 Feb 2025 03:00:16 GMT, Ashutosh Mehra wrote: > The count of various SCCEntry kinds is not correctly computed. This patch fixes it. > This code was introduced as part of i2c2i adapters and was picked up from Andrew Dinn's work on storing stub and blobs. Clearly I messed it up. > The patch also computes and shows the counts for old entries and new entries separately. Though not useful for now, but in incremental workflow it may be helpful to distinguish between the old and new entries. Would be nice to keep separate C1 and C2 counts. And add total total count (adapters, stubs, code and all other blobs). May be separate count for tier1 and tier2 C1 ------------- PR Review: https://git.openjdk.org/leyden/pull/42#pullrequestreview-2618444571 PR Comment: https://git.openjdk.org/leyden/pull/42#issuecomment-2659921038 From duke at openjdk.org Fri Feb 14 17:50:31 2025 From: duke at openjdk.org (duke) Date: Fri, 14 Feb 2025 17:50:31 GMT Subject: RFR: 8350115: [leyden] Clean up name_and_sig_as_C_string uses In-Reply-To: References: Message-ID: On Fri, 14 Feb 2025 16:26:05 GMT, Aleksey Shipilev wrote: > Now that we have optimized a lot of unnecessary compilations, profiles show that various `name_and_sig_as_C_string` are taking about 1.2% in Leyden benchmark profiles. We should sweep those up into conditional log statements and/or common the paths where we actually need these names outside of logging. > > After this fix, the profile impact of `name_and_sig_as_C_string` is `<0.05%`. > > Performance impact on benchmarks is currently hidden by benchmark noise. @shipilev Your change (at version 957efcc67c4c290d7a9908bad71d57c22bfd13fd) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/43#issuecomment-2659929716 From shade at openjdk.org Fri Feb 14 17:50:31 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 14 Feb 2025 17:50:31 GMT Subject: RFR: 8350115: [leyden] Clean up name_and_sig_as_C_string uses In-Reply-To: References: Message-ID: On Fri, 14 Feb 2025 16:26:05 GMT, Aleksey Shipilev wrote: > Now that we have optimized a lot of unnecessary compilations, profiles show that various `name_and_sig_as_C_string` are taking about 1.2% in Leyden benchmark profiles. We should sweep those up into conditional log statements and/or common the paths where we actually need these names outside of logging. > > After this fix, the profile impact of `name_and_sig_as_C_string` is `<0.05%`. > > Performance impact on benchmarks is currently hidden by benchmark noise. Thanks! I think this is good to go. ------------- PR Comment: https://git.openjdk.org/leyden/pull/43#issuecomment-2659928666 From kvn at openjdk.org Fri Feb 14 18:02:34 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Fri, 14 Feb 2025 18:02:34 GMT Subject: git: openjdk/leyden: premain: 8350115: [leyden] Clean up name_and_sig_as_C_string uses Message-ID: <05d7d1f6-7646-4517-aa2d-645e02389045@openjdk.org> Changeset: e13652b8 Branch: premain Author: Aleksey Shipilev Committer: Vladimir Kozlov Date: 2025-02-14 18:01:14 +0000 URL: https://git.openjdk.org/leyden/commit/e13652b8371d14f2afd551e357701f24ce39ee61 8350115: [leyden] Clean up name_and_sig_as_C_string uses Reviewed-by: asmehra, kvn ! src/hotspot/share/code/SCCache.cpp From kvn at openjdk.org Fri Feb 14 18:04:27 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Fri, 14 Feb 2025 18:04:27 GMT Subject: RFR: 8350115: [leyden] Clean up name_and_sig_as_C_string uses In-Reply-To: References: Message-ID: On Fri, 14 Feb 2025 16:26:05 GMT, Aleksey Shipilev wrote: > Now that we have optimized a lot of unnecessary compilations, profiles show that various `name_and_sig_as_C_string` are taking about 1.2% in Leyden benchmark profiles. We should sweep those up into conditional log statements and/or common the paths where we actually need these names outside of logging. > > After this fix, the profile impact of `name_and_sig_as_C_string` is `<0.05%`. > > Performance impact on benchmarks is currently hidden by benchmark noise. Good. ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/43#pullrequestreview-2618478147 From shade at openjdk.org Fri Feb 14 18:04:27 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 14 Feb 2025 18:04:27 GMT Subject: Integrated: 8350115: [leyden] Clean up name_and_sig_as_C_string uses In-Reply-To: References: Message-ID: On Fri, 14 Feb 2025 16:26:05 GMT, Aleksey Shipilev wrote: > Now that we have optimized a lot of unnecessary compilations, profiles show that various `name_and_sig_as_C_string` are taking about 1.2% in Leyden benchmark profiles. We should sweep those up into conditional log statements and/or common the paths where we actually need these names outside of logging. > > After this fix, the profile impact of `name_and_sig_as_C_string` is `<0.05%`. > > Performance impact on benchmarks is currently hidden by benchmark noise. This pull request has now been integrated. Changeset: e13652b8 Author: Aleksey Shipilev Committer: Vladimir Kozlov URL: https://git.openjdk.org/leyden/commit/e13652b8371d14f2afd551e357701f24ce39ee61 Stats: 16 lines in 1 file changed: 5 ins; 3 del; 8 mod 8350115: [leyden] Clean up name_and_sig_as_C_string uses Reviewed-by: asmehra, kvn ------------- PR: https://git.openjdk.org/leyden/pull/43 From shade at openjdk.org Fri Feb 14 18:25:30 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 14 Feb 2025 18:25:30 GMT Subject: RFR: Fix SCCache stats logged on exit In-Reply-To: References: Message-ID: On Fri, 14 Feb 2025 03:00:16 GMT, Ashutosh Mehra wrote: > The count of various SCCEntry kinds is not correctly computed. This patch fixes it. > This code was introduced as part of i2c2i adapters and was picked up from Andrew Dinn's work on storing stub and blobs. Clearly I messed it up. > The patch also computes and shows the counts for old entries and new entries separately. Though not useful for now, but in incremental workflow it may be helpful to distinguish between the old and new entries. src/hotspot/share/code/SCCache.cpp line 1008: > 1006: } > 1007: > 1008: static void log_counts_on_exit(const char* kind, uint counts[2]) { I think you can just inline this method. This would also avoid exposing this symbol into global namespace. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/42#discussion_r1956524247 From duke at openjdk.org Fri Feb 14 22:32:47 2025 From: duke at openjdk.org (duke) Date: Fri, 14 Feb 2025 22:32:47 GMT Subject: git: openjdk/leyden: hermetic-java-runtime: Split libjvm.a into smaller static libraries. Message-ID: Changeset: 625b26b8 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-14 14:29:13 +0000 URL: https://git.openjdk.org/leyden/commit/625b26b898d5205af24b43e5dfb31fe2486846f1 Split libjvm.a into smaller static libraries. ! make/StaticLibs.gmk ! make/hotspot/lib/CompileJvm.gmk From duke at openjdk.org Sun Feb 16 05:18:32 2025 From: duke at openjdk.org (duke) Date: Sun, 16 Feb 2025 05:18:32 GMT Subject: git: openjdk/leyden: premain: 8350148: Native stack overflow when writing Java heap objects into AOT cache Message-ID: <23c1df66-9109-4af1-84dd-52db5ef3fb5b@openjdk.org> Changeset: a2289a00 Branch: premain Author: iklam Date: 2025-02-15 18:50:05 +0000 URL: https://git.openjdk.org/leyden/commit/a2289a0047641ef414ad3067e0f768ac79a4825b 8350148: Native stack overflow when writing Java heap objects into AOT cache ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp From duke at openjdk.org Mon Feb 17 04:29:30 2025 From: duke at openjdk.org (duke) Date: Mon, 17 Feb 2025 04:29:30 GMT Subject: git: openjdk/leyden: premain: 8350059: [premain] Convert invokedynamic tests to use CDSAppTester Message-ID: Changeset: ffeb3087 Branch: premain Author: iklam Date: 2025-02-16 20:06:33 +0000 URL: https://git.openjdk.org/leyden/commit/ffeb308737a9966e7ee623cbf67a6d303335425e 8350059: [premain] Convert invokedynamic tests to use CDSAppTester ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups = test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/StringConcatStress.java - test/hotspot/jtreg/runtime/cds/appcds/indy/IndyAndJavac.java - test/hotspot/jtreg/runtime/cds/appcds/indy/IndyStringConcat.java - test/hotspot/jtreg/runtime/cds/appcds/indy/IndyTestBase.java - test/hotspot/jtreg/runtime/cds/appcds/indy/StringConcatStress2.java From duke at openjdk.org Tue Feb 18 19:23:07 2025 From: duke at openjdk.org (duke) Date: Tue, 18 Feb 2025 19:23:07 GMT Subject: git: openjdk/leyden: hermetic-java-runtime: 37 new changesets Message-ID: <66b51b3b-b787-4ac6-b563-0002a5c025c2@openjdk.org> Changeset: 57f4c30f Branch: hermetic-java-runtime Author: Dmitry Chuyko Date: 2025-02-14 07:54:44 +0000 URL: https://git.openjdk.org/leyden/commit/57f4c30fb6be1da57c8fcc742b5c36d842eef397 8347917: AArch64: Enable upper GPR registers in C1 Reviewed-by: aph ! src/hotspot/cpu/aarch64/c1_Defs_aarch64.hpp ! src/hotspot/cpu/aarch64/c1_FrameMap_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_FrameMap_aarch64.hpp ! src/hotspot/cpu/aarch64/c1_LinearScan_aarch64.hpp ! src/hotspot/cpu/aarch64/c1_Runtime1_aarch64.cpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_FrameMap.hpp Changeset: fa1bd234 Branch: hermetic-java-runtime Author: Nizar Benalla Date: 2025-02-14 12:24:36 +0000 URL: https://git.openjdk.org/leyden/commit/fa1bd2344e60163bf247c668b94f98c50c72855a 8343802: Prevent NULL usage backsliding Reviewed-by: kbarrett ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/sources/TestNoNULL.java Changeset: 19c0ce43 Branch: hermetic-java-runtime Author: Alexander Zvegintsev Date: 2025-02-14 12:55:36 +0000 URL: https://git.openjdk.org/leyden/commit/19c0ce43e258d00d77314d76a361feb2069a5af1 8349751: AIX build failure after upgrade pipewire to 1.3.81 Reviewed-by: mdoerr ! src/java.desktop/unix/native/libpipewire/include/spa/utils/endian.h Changeset: db42a48d Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-14 13:12:30 +0000 URL: https://git.openjdk.org/leyden/commit/db42a48dc5d49783545757bd34aeead851f9288e 8350011: Convert jpackage test lib tests in JUnit format Reviewed-by: almatvee + test/jdk/tools/jpackage/helpers-test/TEST.properties ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/AnnotationsTest.java ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/DirectoryContentVerifierTest.java + test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/JUnitAdapter.java ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/JavaAppDescTest.java ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/TKitTest.java - test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/TestSuite.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Main.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestBuilder.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestInstance.java Changeset: 742e735d Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-14 13:53:06 +0000 URL: https://git.openjdk.org/leyden/commit/742e735d7f6c4ee9ca5a4d290c59d7d6ec1f7635 8349858: Print compilation task before blocking compiler thread for shutdown Reviewed-by: kvn, chagedorn ! src/hotspot/share/compiler/compileBroker.cpp Changeset: 9ea81d90 Branch: hermetic-java-runtime Author: anass baya Committer: Alexey Ivanov Date: 2025-02-14 15:19:09 +0000 URL: https://git.openjdk.org/leyden/commit/9ea81d90175c11460d0efa83f82ceccc4ee2cd3b 8349351: Combine Screen Inset Tests into a Single File Reviewed-by: honkar, dnguyen, aivanov - test/jdk/java/awt/Multiscreen/MultiScreenInsetsTest/MultiScreenInsetsTest.java ! test/jdk/java/awt/Toolkit/ScreenInsetsTest/ScreenInsetsTest.java Changeset: 0414dcec Branch: hermetic-java-runtime Author: Maxim Kartashev Committer: Brian Burkhalter Date: 2025-02-14 15:28:59 +0000 URL: https://git.openjdk.org/leyden/commit/0414dcec118fce24037ca1a6b00561c0ce4c6953 8349812: (fs) Files.newByteChannel with empty path name and CREATE_NEW throws unexpected exception Reviewed-by: bpb ! src/java.base/unix/classes/sun/nio/fs/UnixChannelFactory.java ! test/jdk/java/nio/file/Files/SBC.java Changeset: 2a90b90a Branch: hermetic-java-runtime Author: Ivan ?ipka Committer: Mahendra Chhipa Date: 2025-02-14 16:18:47 +0000 URL: https://git.openjdk.org/leyden/commit/2a90b90a95da91b71cd90caeafae5adaee621ebf 8346117: Add test annotation Reviewed-by: coffeys ! test/jdk/sun/nio/cs/Test6392804.java ! test/jdk/sun/nio/cs/TestUTF_32.java Changeset: 38322407 Branch: hermetic-java-runtime Author: Kelvin Nilsen Date: 2025-02-14 16:40:08 +0000 URL: https://git.openjdk.org/leyden/commit/38322407cd1664115e975c7fd9cb61e40d9557b5 8348594: Shenandoah: Do not penalize for degeneration when not the fault of triggering heuristic Reviewed-by: phh, wkemper ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahAdaptiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahAdaptiveHeuristics.hpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahAggressiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahCompactHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahHeuristics.hpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahPassiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahStaticHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahYoungHeuristics.cpp ! src/hotspot/share/gc/shenandoah/shenandoahControlThread.cpp ! src/hotspot/share/gc/shenandoah/shenandoahFreeSet.hpp ! src/hotspot/share/gc/shenandoah/shenandoahRegulatorThread.cpp Changeset: ba6c9659 Branch: hermetic-java-runtime Author: Kelvin Nilsen Date: 2025-02-14 16:41:26 +0000 URL: https://git.openjdk.org/leyden/commit/ba6c96599aac1a6c08cb66c611474f83bbc9b260 8348595: GenShen: Fix generational free-memory no-progress check Reviewed-by: phh, xpeng ! src/hotspot/share/gc/shenandoah/shenandoahDegeneratedGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahFreeSet.hpp ! src/hotspot/share/gc/shenandoah/shenandoahFullGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMetrics.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMetrics.hpp Changeset: b6443f6f Branch: hermetic-java-runtime Author: Chris Plummer Date: 2025-02-14 19:40:47 +0000 URL: https://git.openjdk.org/leyden/commit/b6443f6ff96707f67552df41c01d18c193560223 8348347: Cleanup JavaThread subclass support in SA Reviewed-by: kevinw, sspitsyn - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/AttachListenerThread.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/CompilerThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/DeoptimizeObjectsALotThread.java + src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/HiddenJavaThread.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/JavaThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/JvmtiAgentThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/MonitorDeflationThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/NotificationThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/ServiceThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/StringDedupThread.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Thread.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/ThreadStackTrace.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Threads.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/StackTrace.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/JavaThreadsPanel.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/PointerLocation.java Changeset: 62345364 Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-15 07:22:20 +0000 URL: https://git.openjdk.org/leyden/commit/623453647a8a387b2d8d375cb18b33666abc16ee 8349915: CTW: Lots of level 3 compiles are done at level 2 after JDK-8348570 Reviewed-by: kvn, chagedorn ! src/hotspot/share/compiler/compilationPolicy.cpp ! src/hotspot/share/compiler/compileTask.hpp Changeset: 5cf11324 Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-15 14:31:29 +0000 URL: https://git.openjdk.org/leyden/commit/5cf11324afdeed0189e0491845a7ffe78c7c1e13 8350098: jpackage test lib erroneously will run methods without @Test annotation as tests Reviewed-by: almatvee ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/AnnotationsTest.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Annotations.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestBuilder.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestMethodSupplier.java Changeset: 7d11418c Branch: hermetic-java-runtime Author: Bradford Wetmore Date: 2025-02-15 22:40:46 +0000 URL: https://git.openjdk.org/leyden/commit/7d11418c820b46926a25907766d16083a4b349de 8350147: Replace example in KEM class with the one from JEP 452 Reviewed-by: weijun ! src/java.base/share/classes/javax/crypto/KEM.java Changeset: 21927237 Branch: hermetic-java-runtime Author: David Holmes Date: 2025-02-17 02:09:25 +0000 URL: https://git.openjdk.org/leyden/commit/2192723734e4edd2d2136637a46e9256c1b15703 8350162: ProblemList compiler/tiered/Level2RecompilationTest.java Reviewed-by: jpai ! test/hotspot/jtreg/ProblemList.txt Changeset: 5e9d72e2 Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-17 08:02:51 +0000 URL: https://git.openjdk.org/leyden/commit/5e9d72e2241426c0cf26abadab73e63434d51a4a 8350094: Linux gcc 13.2.0 build fails when ubsan is enabled Reviewed-by: mdoerr, prr, kbarrett ! make/autoconf/jdk-options.m4 Changeset: b1b48286 Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-17 09:21:49 +0000 URL: https://git.openjdk.org/leyden/commit/b1b48286a6cbee8a9f96d739ab437915c573022c 8350086: Inline hot Method accessors for faster task selection Reviewed-by: kvn, coleenp, aph, vlivanov ! src/hotspot/share/compiler/compileTask.cpp ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/method.hpp ! src/hotspot/share/oops/method.inline.hpp ! src/hotspot/share/oops/methodData.cpp ! src/hotspot/share/runtime/java.cpp Changeset: f1258f9e Branch: hermetic-java-runtime Author: Johan Sj?len Date: 2025-02-17 09:22:57 +0000 URL: https://git.openjdk.org/leyden/commit/f1258f9e16b063c0fdbdd614ae2dc76c67607654 8349755: Fix corner case issues in async UL Reviewed-by: dholmes, aboldtch ! src/hotspot/share/logging/logAsyncWriter.cpp ! src/hotspot/share/logging/logAsyncWriter.hpp ! src/hotspot/share/logging/logFileOutput.cpp ! src/hotspot/share/logging/logFileStreamOutput.cpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/logging/logTagSet.cpp + test/hotspot/jtreg/runtime/logging/AsyncDeathTest.java Changeset: 071c8f51 Branch: hermetic-java-runtime Author: Jaikiran Pai Date: 2025-02-17 11:05:59 +0000 URL: https://git.openjdk.org/leyden/commit/071c8f515537d6030ae7055e309b4f4a6a495bc8 8349909: jdk.internal.jimage.decompressor.ZipDecompressor does not close the Inflater in exceptional cases Reviewed-by: lancea, alanb ! src/java.base/share/classes/jdk/internal/jimage/decompressor/ZipDecompressor.java Changeset: b3a4026c Branch: hermetic-java-runtime Author: Gui Cao Committer: Fei Yang Date: 2025-02-17 11:35:07 +0000 URL: https://git.openjdk.org/leyden/commit/b3a4026c65eb049eb4f3a3cbf52c9f0c9979a256 8349764: RISC-V: C1: Improve Class.isInstance intrinsic Reviewed-by: fyang, mli ! src/hotspot/cpu/riscv/c1_LIRGenerator_riscv.cpp ! src/hotspot/cpu/riscv/c1_Runtime1_riscv.cpp Changeset: 7f3ecb4d Branch: hermetic-java-runtime Author: Matthias Ernst Date: 2025-02-17 13:07:23 +0000 URL: https://git.openjdk.org/leyden/commit/7f3ecb4d92fdb084ce632cab484cf4578487b090 8346664: C2: Optimize mask check with constant offset Reviewed-by: epeter, qamai ! src/hotspot/share/opto/mulnode.cpp ! src/hotspot/share/opto/mulnode.hpp ! test/hotspot/jtreg/compiler/c2/irTests/TestShiftAndMask.java ! test/hotspot/jtreg/compiler/loopopts/superword/TestEquivalentInvariants.java ! test/hotspot/jtreg/compiler/vectorization/TestPopulateIndex.java Changeset: 2bd8f026 Branch: hermetic-java-runtime Author: Alexey Ivanov Date: 2025-02-17 13:12:02 +0000 URL: https://git.openjdk.org/leyden/commit/2bd8f026dbd449e810dc6ce96cd9235e5cb51a9b 8342524: Use latch in AbstractButton/bug6298940.java instead of delay Reviewed-by: azvegint, kizune, dnguyen, achung + test/jdk/javax/swing/AbstractButton/bug6298940.java Changeset: 906358d3 Branch: hermetic-java-runtime Author: Alexey Ivanov Date: 2025-02-17 13:13:15 +0000 URL: https://git.openjdk.org/leyden/commit/906358d3a14ce755fec771f0a6bb856b3a8f3297 8294155: Exception thrown before awaitAndCheck hangs PassFailJFrame Reviewed-by: serb, azvegint, kizune ! test/jdk/java/awt/regtesthelpers/PassFailJFrame.java Changeset: 650d0d95 Branch: hermetic-java-runtime Author: Alexey Ivanov Date: 2025-02-17 13:13:42 +0000 URL: https://git.openjdk.org/leyden/commit/650d0d954ea8e20e31f17d459993d5edecf08a4c 8348865: JButton/bug4796987.java never runs because Windows XP is unavailable Reviewed-by: tr, abhiscxk, serb ! test/jdk/javax/swing/JButton/4796987/bug4796987.java Changeset: 8b2aa51b Branch: hermetic-java-runtime Author: Suchismith Roy Committer: Amit Kumar Date: 2025-02-17 13:28:34 +0000 URL: https://git.openjdk.org/leyden/commit/8b2aa51b0c36a993e46fea7a4b61788dd101d606 8349780: AIX os::get_summary_cpu_info support Power 11 Reviewed-by: stuefe, amitkumar ! src/hotspot/os/aix/os_aix.cpp Changeset: 3f0c1370 Branch: hermetic-java-runtime Author: Hannes Walln?fer Date: 2025-02-17 15:31:18 +0000 URL: https://git.openjdk.org/leyden/commit/3f0c1370269db978072814c2170fc3987efade85 8347123: Add missing @serial tags to other modules Reviewed-by: prr, nbenalla, alanb ! src/java.datatransfer/share/classes/java/awt/datatransfer/DataFlavor.java ! src/java.management/share/classes/javax/management/ImmutableDescriptor.java ! src/java.management/share/classes/javax/management/MBeanPermission.java ! src/java.management/share/classes/javax/management/remote/JMXServiceURL.java ! src/java.management/share/classes/javax/management/remote/NotificationResult.java ! src/java.scripting/share/classes/javax/script/ScriptException.java ! src/java.security.jgss/share/classes/javax/security/auth/kerberos/KerberosTicket.java ! src/java.smartcardio/share/classes/javax/smartcardio/ATR.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialBlob.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialClob.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialJavaObject.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialRef.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/spi/SyncProviderException.java ! src/java.sql/share/classes/java/sql/SQLClientInfoException.java ! src/java.sql/share/classes/javax/sql/StatementEvent.java ! src/java.xml.crypto/share/classes/javax/xml/crypto/URIReferenceException.java ! src/java.xml/share/classes/javax/xml/namespace/QName.java ! src/java.xml/share/classes/javax/xml/parsers/FactoryConfigurationError.java ! src/java.xml/share/classes/javax/xml/stream/FactoryConfigurationError.java ! src/java.xml/share/classes/javax/xml/stream/XMLStreamException.java ! src/java.xml/share/classes/javax/xml/transform/TransformerException.java ! src/java.xml/share/classes/javax/xml/transform/TransformerFactoryConfigurationError.java ! src/java.xml/share/classes/org/w3c/dom/DOMException.java ! src/java.xml/share/classes/org/w3c/dom/events/EventException.java ! src/java.xml/share/classes/org/w3c/dom/ls/LSException.java ! src/java.xml/share/classes/org/w3c/dom/ranges/RangeException.java ! src/jdk.attach/share/classes/com/sun/tools/attach/AgentInitializationException.java ! src/jdk.dynalink/share/classes/jdk/dynalink/beans/StaticClass.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/Float16.java ! src/jdk.jdi/share/classes/com/sun/jdi/ClassNotLoadedException.java ! src/jdk.jdi/share/classes/com/sun/jdi/InternalException.java ! src/jdk.jdi/share/classes/com/sun/jdi/InvocationException.java ! src/jdk.jdi/share/classes/com/sun/jdi/connect/IllegalConnectorArgumentsException.java ! src/jdk.jdi/share/classes/com/sun/jdi/connect/VMStartException.java ! src/jdk.jshell/share/classes/jdk/jshell/EvalException.java ! src/jdk.jshell/share/classes/jdk/jshell/UnresolvedReferenceException.java ! src/jdk.jshell/share/classes/jdk/jshell/spi/ExecutionControl.java ! src/jdk.jshell/share/classes/jdk/jshell/spi/SPIResolutionException.java ! src/jdk.xml.dom/share/classes/org/w3c/dom/xpath/XPathException.java Changeset: 8ec58939 Branch: hermetic-java-runtime Author: Doug Simon Date: 2025-02-17 19:34:29 +0000 URL: https://git.openjdk.org/leyden/commit/8ec589390f7dc67dd883a1efddb8da32790f6591 8346781: [JVMCI] Limit ServiceLoader to class initializers Reviewed-by: never, yzheng ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/Cleaner.java ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/HotSpotVMConfig.java ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/services/JVMCIServiceLocator.java ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/services/Services.java ! test/hotspot/jtreg/compiler/jvmci/events/JvmciShutdownEventListener.java ! test/hotspot/jtreg/compiler/jvmci/events/JvmciShutdownEventTest.java Changeset: 8df80400 Branch: hermetic-java-runtime Author: Fei Yang Date: 2025-02-18 00:19:46 +0000 URL: https://git.openjdk.org/leyden/commit/8df804005ed772936fd77a4c0335a5620f909570 8350093: RISC-V: java/math/BigInteger/LargeValueExceptions.java timeout with COH Reviewed-by: mli, fjiang ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp Changeset: 3353f8e0 Branch: hermetic-java-runtime Author: Stefan Karlsson Date: 2025-02-18 07:51:45 +0000 URL: https://git.openjdk.org/leyden/commit/3353f8e0875165adbc8ee764a4c8d8817a87cd88 8349652: Rewire nmethod oop load barriers Reviewed-by: kvn, aboldtch ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/gc/shared/barrierSetNMethod.cpp ! src/hotspot/share/gc/shared/barrierSetNMethod.hpp ! src/hotspot/share/gc/z/zBarrierSet.inline.hpp ! src/hotspot/share/gc/z/zBarrierSetNMethod.cpp ! src/hotspot/share/gc/z/zBarrierSetNMethod.hpp ! src/hotspot/share/gc/z/zNMethod.cpp ! src/hotspot/share/gc/z/zNMethod.hpp ! src/hotspot/share/oops/access.hpp ! src/hotspot/share/oops/accessDecorators.hpp Changeset: 013fda1d Branch: hermetic-java-runtime Author: Marc Chevalier Committer: Christian Hagedorn Date: 2025-02-18 08:43:21 +0000 URL: https://git.openjdk.org/leyden/commit/013fda1dad22d7aca3ee24c11dc42cb3885b5323 8348172: C2: Remove unused local variables in filter_helper() methods Reviewed-by: kvn, haosun, chagedorn ! src/hotspot/share/opto/type.cpp Changeset: ff05d979 Branch: hermetic-java-runtime Author: Marc Chevalier Committer: Christian Hagedorn Date: 2025-02-18 09:25:24 +0000 URL: https://git.openjdk.org/leyden/commit/ff05d9795322fee6def559bd6776de42b96c27dc 8349180: Remove redundant initialization in ciField constructor Reviewed-by: chagedorn ! src/hotspot/share/ci/ciField.cpp Changeset: 160db5f0 Branch: hermetic-java-runtime Author: Afshin Zafari Date: 2025-02-18 09:56:38 +0000 URL: https://git.openjdk.org/leyden/commit/160db5f0f000f8471f71e0725da862d57db28c8a 8340110: Ubsan: verifier.cpp:2043:19: runtime error: shift exponent 100 is too large for 32-bit type 'int' Reviewed-by: dholmes, jsjolen ! src/hotspot/share/classfile/verifier.cpp Changeset: d7baae3e Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-18 09:56:49 +0000 URL: https://git.openjdk.org/leyden/commit/d7baae3ee92bbc94e380703f173a4d4a9de75e29 8350178: Incorrect comment after JDK-8345580 Reviewed-by: chagedorn, kvn ! src/hotspot/share/opto/node.hpp Changeset: 8193e0d5 Branch: hermetic-java-runtime Author: Roberto Casta?eda Lozano Date: 2025-02-18 10:23:35 +0000 URL: https://git.openjdk.org/leyden/commit/8193e0d53ac806d6974e2aacc7b7476aeb52a5fd 8346280: C2: implement late barrier elision for G1 Reviewed-by: tschatzl, aboldtch, mdoerr ! src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp ! src/hotspot/share/gc/g1/c2/g1BarrierSetC2.hpp ! src/hotspot/share/gc/shared/c2/barrierSetC2.cpp ! src/hotspot/share/gc/shared/c2/barrierSetC2.hpp ! src/hotspot/share/gc/shared/c2/cardTableBarrierSetC2.cpp ! src/hotspot/share/gc/shared/c2/cardTableBarrierSetC2.hpp ! src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp ! src/hotspot/share/gc/z/c2/zBarrierSetC2.hpp ! test/hotspot/jtreg/compiler/gcbarriers/TestG1BarrierGeneration.java Changeset: 885be2ef Branch: hermetic-java-runtime Author: Hamlin Li Date: 2025-02-18 10:24:51 +0000 URL: https://git.openjdk.org/leyden/commit/885be2efa6b1359a7c7ab36882e19a7eaba77fb3 8349908: RISC-V: C2 SelectFromTwoVector Reviewed-by: fyang, luhenry ! src/hotspot/cpu/riscv/riscv_v.ad Changeset: e1d0a9c8 Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-18 13:20:05 +0000 URL: https://git.openjdk.org/leyden/commit/e1d0a9c832ef3e92faaed7f290ff56c0ed8a9d94 8350202: Tune for Power10 CPUs on Linux ppc64le Reviewed-by: mdoerr ! make/autoconf/flags-cflags.m4 Changeset: 2ab60e03 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-18 11:13:22 +0000 URL: https://git.openjdk.org/leyden/commit/2ab60e037b0092b6f19a80331800df412398978c Merge branch 'master' into hermetic-java-runtime ! src/hotspot/share/logging/logTag.hpp ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Thread.java ! src/hotspot/share/logging/logTag.hpp ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Thread.java From iklam at openjdk.org Tue Feb 18 23:33:06 2025 From: iklam at openjdk.org (Ioi Lam) Date: Tue, 18 Feb 2025 23:33:06 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 22:16:04 GMT, Mat Carter wrote: > Add support to the AOT cache for References (soft, weak and phantom) > Remove the workarounds that were added because References weren't supported > > Confirmed from logs that References are stored in the cache correctly > > All demos run successfully on osx This looks good. I ran all the CDS tests and found only one crash with SpringClinic due to [JDK-8350148](https://bugs.openjdk.org/browse/JDK-8350148). I will try to fix this bug first before this PR is integrated. src/hotspot/share/cds/metaspaceShared.cpp line 1025: > 1023: // updated concurrently when we are saving their contents into a side table. > 1024: // Now that we don't make a side table, is this needed for the remaining call > 1025: // to resetArchivedStates I think comments from 1022-1023 can be removed. The assert should be moved to just after line 1006: #if INCLUDE_CDS_JAVA_HEAP if (CDSConfig::is_dumping_heap()) { // We will reset some important global states in a few system classes. If we have concurrent // Java threads, they will either fail as a result, or resuscitate these states. Neither is // desirable. assert(CDSConfig::allow_only_single_java_thread(), "Required"); ------------- PR Review: https://git.openjdk.org/leyden/pull/41#pullrequestreview-2619311769 PR Review Comment: https://git.openjdk.org/leyden/pull/41#discussion_r1957033597 From macarte at openjdk.org Tue Feb 18 23:33:06 2025 From: macarte at openjdk.org (Mat Carter) Date: Tue, 18 Feb 2025 23:33:06 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache Message-ID: Add support to the AOT cache for References (soft, weak and phantom) Remove the workarounds that were added because References weren't supported Confirmed from logs that References are stored in the cache correctly All demos run successfully on osx ------------- Commit messages: - Addressing PR feedback - moving assert higher - Fix missing line at end of file - Remove superfluous SuppressWarnings now we've removed unchecked casts - Remove workarounds now that References are supported in CDS Changes: https://git.openjdk.org/leyden/pull/41/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=41&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8341587 Stats: 114 lines in 9 files changed: 9 ins; 100 del; 5 mod Patch: https://git.openjdk.org/leyden/pull/41.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/41/head:pull/41 PR: https://git.openjdk.org/leyden/pull/41 From iklam at openjdk.org Tue Feb 18 23:33:06 2025 From: iklam at openjdk.org (Ioi Lam) Date: Tue, 18 Feb 2025 23:33:06 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache In-Reply-To: References: Message-ID: <2CedtRmobjqhxF1qAuJouKTvn7ZGPb26wIrkVMhSeYo=.5f54a53e-156c-46b5-85d3-231819a0d9b9@github.com> On Sat, 15 Feb 2025 06:22:06 GMT, Ioi Lam wrote: > This looks good. I ran all the CDS tests and found only one crash with SpringClinic due to [JDK-8350148](https://bugs.openjdk.org/browse/JDK-8350148). I will try to fix this bug first before this PR is integrated. I pushed a fix for [JDK-8350148](https://bugs.openjdk.org/browse/JDK-8350148) into the premain branch. I test this PR on top and all Leyden tests passed. ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2661703585 From macarte at openjdk.org Tue Feb 18 23:33:07 2025 From: macarte at openjdk.org (Mat Carter) Date: Tue, 18 Feb 2025 23:33:07 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache In-Reply-To: References: Message-ID: On Sat, 15 Feb 2025 04:58:25 GMT, Ioi Lam wrote: >> Add support to the AOT cache for References (soft, weak and phantom) >> Remove the workarounds that were added because References weren't supported >> >> Confirmed from logs that References are stored in the cache correctly >> >> All demos run successfully on osx > > src/hotspot/share/cds/metaspaceShared.cpp line 1025: > >> 1023: // updated concurrently when we are saving their contents into a side table. >> 1024: // Now that we don't make a side table, is this needed for the remaining call >> 1025: // to resetArchivedStates > > I think comments from 1022-1023 can be removed. The assert should be moved to just after line 1006: > > > #if INCLUDE_CDS_JAVA_HEAP > if (CDSConfig::is_dumping_heap()) { > // We will reset some important global states in a few system classes. If we have concurrent > // Java threads, they will either fail as a result, or resuscitate these states. Neither is > // desirable. > assert(CDSConfig::allow_only_single_java_thread(), "Required"); Agreed, changes made ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/41#discussion_r1960731065 From liach at openjdk.org Wed Feb 19 02:21:20 2025 From: liach at openjdk.org (Chen Liang) Date: Wed, 19 Feb 2025 02:21:20 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache In-Reply-To: References: Message-ID: <2dlzK-n4PYt50G_sMgZ6bmZyXpE5wt2ZVw4u4Y-KfWw=.8f62e789-c996-42eb-8a8e-f0d0010d083a@github.com> On Wed, 12 Feb 2025 22:16:04 GMT, Mat Carter wrote: > Add support to the AOT cache for References (soft, weak and phantom) > Remove the workarounds that were added because References weren't supported > > Confirmed from logs that References are stored in the cache correctly > > All demos run successfully on osx src/java.base/share/classes/java/lang/invoke/MethodType.java line 398: > 396: MethodType mt = internTable.get(primordialMT); > 397: if (mt != null) > 398: { This left brace does not follow the code style in this file. Either remove this pair of brace or make it `if (mt != null) {` src/java.base/share/classes/java/lang/invoke/MethodTypeForm.java line 134: > 132: @SuppressWarnings({"rawtypes", "unchecked"}) > 133: public LambdaForm cachedLambdaForm(int which) { > 134: Object entry = lambdaForms[which]; I recommend restoring the static types of the arrays to `SoftReference[]` unless there is extra overhead from loading/initialization of `SoftReference` class. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/41#discussion_r1960851231 PR Review Comment: https://git.openjdk.org/leyden/pull/41#discussion_r1960850319 From duke at openjdk.org Wed Feb 19 02:56:44 2025 From: duke at openjdk.org (duke) Date: Wed, 19 Feb 2025 02:56:44 GMT Subject: git: openjdk/leyden: premain: Clean up Message-ID: <03803f6e-74f7-4ed3-a7a1-d168d4e6be1b@openjdk.org> Changeset: 85d331a9 Branch: premain Author: Igor Veresov Date: 2025-02-18 18:54:42 +0000 URL: https://git.openjdk.org/leyden/commit/85d331a9afbd22abda7b4d821f65eff9d84ead08 Clean up ! src/hotspot/share/code/SCCache.cpp ! src/hotspot/share/compiler/compilationPolicy.cpp ! src/hotspot/share/oops/trainingData.cpp ! src/hotspot/share/oops/trainingData.hpp From macarte at openjdk.org Wed Feb 19 16:57:09 2025 From: macarte at openjdk.org (Mat Carter) Date: Wed, 19 Feb 2025 16:57:09 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache In-Reply-To: <2dlzK-n4PYt50G_sMgZ6bmZyXpE5wt2ZVw4u4Y-KfWw=.8f62e789-c996-42eb-8a8e-f0d0010d083a@github.com> References: <2dlzK-n4PYt50G_sMgZ6bmZyXpE5wt2ZVw4u4Y-KfWw=.8f62e789-c996-42eb-8a8e-f0d0010d083a@github.com> Message-ID: <-af49CaWuTQWJa1aiQHoUVnCLXR909CMzg15xPPTFaw=.98af2c71-c5ee-4e5d-aca1-b88b5a3c4965@github.com> On Wed, 19 Feb 2025 02:16:22 GMT, Chen Liang wrote: >> Add support to the AOT cache for References (soft, weak and phantom) >> Remove the workarounds that were added because References weren't supported >> >> Confirmed from logs that References are stored in the cache correctly >> >> All demos run successfully on osx > > src/java.base/share/classes/java/lang/invoke/MethodTypeForm.java line 134: > >> 132: @SuppressWarnings({"rawtypes", "unchecked"}) >> 133: public LambdaForm cachedLambdaForm(int which) { >> 134: Object entry = lambdaForms[which]; > > I recommend restoring the static types of the arrays to `SoftReference[]` unless there is extra overhead from loading/initialization of `SoftReference` class. I tried this before but then 'this.methodHandles = new SoftReference[MH_LIMIT];' is not allowed due to the error 'generic array creation'. I looked at allocating using ArrayList<>(initialCapacity) as they are backed. with Object[], but then we have to add range checks on the reads to avoid IndexOutOfBounds or set a null entry at (initialCapacity-1); unless someone can suggest a better implementation I'm inclined to let it stand ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/41#discussion_r1962046281 From macarte at openjdk.org Wed Feb 19 17:03:22 2025 From: macarte at openjdk.org (Mat Carter) Date: Wed, 19 Feb 2025 17:03:22 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v2] In-Reply-To: References: Message-ID: > Add support to the AOT cache for References (soft, weak and phantom) > Remove the workarounds that were added because References weren't supported > > Confirmed from logs that References are stored in the cache correctly > > All demos run successfully on osx Mat Carter has updated the pull request incrementally with one additional commit since the last revision: Fix style issue ------------- Changes: - all: https://git.openjdk.org/leyden/pull/41/files - new: https://git.openjdk.org/leyden/pull/41/files/929f700f..447d3121 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=41&range=01 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=41&range=00-01 Stats: 2 lines in 1 file changed: 0 ins; 2 del; 0 mod Patch: https://git.openjdk.org/leyden/pull/41.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/41/head:pull/41 PR: https://git.openjdk.org/leyden/pull/41 From liach at openjdk.org Wed Feb 19 17:10:06 2025 From: liach at openjdk.org (Chen Liang) Date: Wed, 19 Feb 2025 17:10:06 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v2] In-Reply-To: <-af49CaWuTQWJa1aiQHoUVnCLXR909CMzg15xPPTFaw=.98af2c71-c5ee-4e5d-aca1-b88b5a3c4965@github.com> References: <2dlzK-n4PYt50G_sMgZ6bmZyXpE5wt2ZVw4u4Y-KfWw=.8f62e789-c996-42eb-8a8e-f0d0010d083a@github.com> <-af49CaWuTQWJa1aiQHoUVnCLXR909CMzg15xPPTFaw=.98af2c71-c5ee-4e5d-aca1-b88b5a3c4965@github.com> Message-ID: On Wed, 19 Feb 2025 16:54:47 GMT, Mat Carter wrote: >> src/java.base/share/classes/java/lang/invoke/MethodTypeForm.java line 134: >> >>> 132: @SuppressWarnings({"rawtypes", "unchecked"}) >>> 133: public LambdaForm cachedLambdaForm(int which) { >>> 134: Object entry = lambdaForms[which]; >> >> I recommend restoring the static types of the arrays to `SoftReference[]` unless there is extra overhead from loading/initialization of `SoftReference` class. > > I tried this before but then 'this.methodHandles = new SoftReference[MH_LIMIT];' is not allowed due to the error 'generic array creation'. I looked at allocating using ArrayList<>(initialCapacity) as they are backed. with Object[], but then we have to add range checks on the reads to avoid IndexOutOfBounds or set a null entry at (initialCapacity-1); unless someone can suggest a better implementation I'm inclined to let it stand You can try like `(SoftReference[]) new SoftReference[MH_LIMIT]`, and add `@SuppressWarnings("unchecked")` on the constructors. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/41#discussion_r1962066401 From macarte at openjdk.org Wed Feb 19 18:50:15 2025 From: macarte at openjdk.org (Mat Carter) Date: Wed, 19 Feb 2025 18:50:15 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v2] In-Reply-To: References: Message-ID: On Wed, 19 Feb 2025 17:03:22 GMT, Mat Carter wrote: >> Add support to the AOT cache for References (soft, weak and phantom) >> Remove the workarounds that were added because References weren't supported >> >> Confirmed from logs that References are stored in the cache correctly >> >> All demos run successfully on osx > > Mat Carter has updated the pull request incrementally with one additional commit since the last revision: > > Fix style issue Is this a new requirement, or did I perform a bad git operation somehow? I didn't have a problem with my last PR image ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2669486582 From duke at openjdk.org Wed Feb 19 19:26:34 2025 From: duke at openjdk.org (duke) Date: Wed, 19 Feb 2025 19:26:34 GMT Subject: git: openjdk/leyden: premain: Fixed typo in test case Message-ID: <64bcc521-cc48-4e73-8168-036d13ec00ea@openjdk.org> Changeset: 245f500c Branch: premain Author: iklam Date: 2025-02-19 11:24:47 +0000 URL: https://git.openjdk.org/leyden/commit/245f500ccb24fbf2871cd3d7344ff3cb23f84ec3 Fixed typo in test case ! test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/StringConcatStress.java From macarte at openjdk.org Wed Feb 19 19:36:38 2025 From: macarte at openjdk.org (Mat Carter) Date: Wed, 19 Feb 2025 19:36:38 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v3] In-Reply-To: References: Message-ID: <3JUsXTld6wfBtjO1VLNbIGOZa_0cvmznlmuK-N_eXT4=.c896f455-a95c-423d-b995-79b1d7f15db0@github.com> > Add support to the AOT cache for References (soft, weak and phantom) > Remove the workarounds that were added because References weren't supported > > Confirmed from logs that References are stored in the cache correctly > > All demos run successfully on osx Mat Carter has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains six additional commits since the last revision: - Merge branch 'premain' into macarte-weakrefs - Fix style issue - Addressing PR feedback - moving assert higher - Fix missing line at end of file - Remove superfluous SuppressWarnings now we've removed unchecked casts - Remove workarounds now that References are supported in CDS ------------- Changes: - all: https://git.openjdk.org/leyden/pull/41/files - new: https://git.openjdk.org/leyden/pull/41/files/447d3121..4c4a0d7b Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=41&range=02 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=41&range=01-02 Stats: 59373 lines in 3338 files changed: 27394 ins; 17695 del; 14284 mod Patch: https://git.openjdk.org/leyden/pull/41.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/41/head:pull/41 PR: https://git.openjdk.org/leyden/pull/41 From macarte at openjdk.org Wed Feb 19 19:36:38 2025 From: macarte at openjdk.org (Mat Carter) Date: Wed, 19 Feb 2025 19:36:38 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v2] In-Reply-To: References: Message-ID: <6Gt8iByKGz27UR2a9gELj3OpopeY6EjlxPxOe2A2M_U=.e1bb6000-fc37-41fd-9645-e8838b2aeefb@github.com> On Wed, 19 Feb 2025 17:03:22 GMT, Mat Carter wrote: >> Add support to the AOT cache for References (soft, weak and phantom) >> Remove the workarounds that were added because References weren't supported >> >> Confirmed from logs that References are stored in the cache correctly >> >> All demos run successfully on osx > > Mat Carter has updated the pull request incrementally with one additional commit since the last revision: > > Fix style issue > Is this a new requirement, or did I perform a bad git operation somehow? I didn't have a problem with my last PR > > image I just sync'd my premain with leyden/premain and merged the changes into my branch ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2669576943 From liach at openjdk.org Wed Feb 19 19:39:06 2025 From: liach at openjdk.org (Chen Liang) Date: Wed, 19 Feb 2025 19:39:06 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v2] In-Reply-To: References: Message-ID: On Wed, 19 Feb 2025 17:03:22 GMT, Mat Carter wrote: >> Add support to the AOT cache for References (soft, weak and phantom) >> Remove the workarounds that were added because References weren't supported >> >> Confirmed from logs that References are stored in the cache correctly >> >> All demos run successfully on osx > > Mat Carter has updated the pull request incrementally with one additional commit since the last revision: > > Fix style issue This is a github display; don't worry about it. We do not use GitHub merge here. The openjdk skara bots are responsible for squash-committing the PR once you type the `/integrate` command when it is ready. ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2669583134 From iklam at openjdk.org Wed Feb 19 20:33:03 2025 From: iklam at openjdk.org (Ioi Lam) Date: Wed, 19 Feb 2025 20:33:03 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v3] In-Reply-To: <-af49CaWuTQWJa1aiQHoUVnCLXR909CMzg15xPPTFaw=.98af2c71-c5ee-4e5d-aca1-b88b5a3c4965@github.com> References: <2dlzK-n4PYt50G_sMgZ6bmZyXpE5wt2ZVw4u4Y-KfWw=.8f62e789-c996-42eb-8a8e-f0d0010d083a@github.com> <-af49CaWuTQWJa1aiQHoUVnCLXR909CMzg15xPPTFaw=.98af2c71-c5ee-4e5d-aca1-b88b5a3c4965@github.com> Message-ID: <3AEVyV4sPN55QW-bGRQ2p4zdPqsZ8xjTB4weClx8M10=.bb79eeb3-dc0c-4a65-9dbc-e86a977ea90f@github.com> On Wed, 19 Feb 2025 16:54:47 GMT, Mat Carter wrote: >> src/java.base/share/classes/java/lang/invoke/MethodTypeForm.java line 134: >> >>> 132: @SuppressWarnings({"rawtypes", "unchecked"}) >>> 133: public LambdaForm cachedLambdaForm(int which) { >>> 134: Object entry = lambdaForms[which]; >> >> I recommend restoring the static types of the arrays to `SoftReference[]` unless there is extra overhead from loading/initialization of `SoftReference` class. > > I tried this before but then 'this.methodHandles = new SoftReference[MH_LIMIT];' is not allowed due to the error 'generic array creation'. I looked at allocating using ArrayList<>(initialCapacity) as they are backed. with Object[], but then we have to add range checks on the reads to avoid IndexOutOfBounds or set a null entry at (initialCapacity-1); unless someone can suggest a better implementation I'm inclined to let it stand @macarte I think you can try restoring all these touched by JEP 483 to the prior version. I can see that there are a few changes in MethodTypeForm.java that you haven't restored yet https://github.com/openjdk/jdk/commit/41a2d49f0a1ed298b8ab023ce634335464454fe7#diff-26f13a6a296ac624577fb32626de70ed7c56b1a1c80fde258aea71a25b7560e2 - LamdaFormEditor.java - MethoHandleNatives.java - MethodType.java - MethodTypeForm.java That should get rid of the compilation error you mentioned above. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/41#discussion_r1962332413 From duke at openjdk.org Thu Feb 20 00:16:19 2025 From: duke at openjdk.org (duke) Date: Thu, 20 Feb 2025 00:16:19 GMT Subject: git: openjdk/leyden: hermetic-java-runtime: - Disable split libjvm.a for now. Message-ID: <5df60a75-4922-4d28-aba3-cb4c54087883@openjdk.org> Changeset: f259cb5b Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-19 16:13:32 +0000 URL: https://git.openjdk.org/leyden/commit/f259cb5be0ee48d593d66d9583d5ced8dc61c577 - Disable split libjvm.a for now. - Fix a merge error in arguments.cpp. ! make/StaticLibs.gmk ! make/hotspot/lib/CompileJvm.gmk ! src/hotspot/share/runtime/arguments.cpp From macarte at openjdk.org Thu Feb 20 18:22:40 2025 From: macarte at openjdk.org (Mat Carter) Date: Thu, 20 Feb 2025 18:22:40 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v4] In-Reply-To: References: Message-ID: > Add support to the AOT cache for References (soft, weak and phantom) > Remove the workarounds that were added because References weren't supported > > Confirmed from logs that References are stored in the cache correctly > > All demos run successfully on osx Mat Carter has updated the pull request incrementally with one additional commit since the last revision: Revert back to pre JEP 483 form ------------- Changes: - all: https://git.openjdk.org/leyden/pull/41/files - new: https://git.openjdk.org/leyden/pull/41/files/4c4a0d7b..8352c429 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=41&range=03 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=41&range=02-03 Stats: 28 lines in 3 files changed: 1 ins; 17 del; 10 mod Patch: https://git.openjdk.org/leyden/pull/41.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/41/head:pull/41 PR: https://git.openjdk.org/leyden/pull/41 From macarte at openjdk.org Thu Feb 20 18:22:40 2025 From: macarte at openjdk.org (Mat Carter) Date: Thu, 20 Feb 2025 18:22:40 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v4] In-Reply-To: References: <2dlzK-n4PYt50G_sMgZ6bmZyXpE5wt2ZVw4u4Y-KfWw=.8f62e789-c996-42eb-8a8e-f0d0010d083a@github.com> <-af49CaWuTQWJa1aiQHoUVnCLXR909CMzg15xPPTFaw=.98af2c71-c5ee-4e5d-aca1-b88b5a3c4965@github.com> Message-ID: On Wed, 19 Feb 2025 17:07:59 GMT, Chen Liang wrote: >> I tried this before but then 'this.methodHandles = new SoftReference[MH_LIMIT];' is not allowed due to the error 'generic array creation'. I looked at allocating using ArrayList<>(initialCapacity) as they are backed. with Object[], but then we have to add range checks on the reads to avoid IndexOutOfBounds or set a null entry at (initialCapacity-1); unless someone can suggest a better implementation I'm inclined to let it stand > > You can try like `(SoftReference[]) new SoftReference[MH_LIMIT]`, and add `@SuppressWarnings("unchecked")` on the constructors. I restored the code to follow the pre-JEP 483 implementation; thank you @liach and @iklam ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/41#discussion_r1964127374 From asmehra at openjdk.org Thu Feb 20 22:05:25 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 20 Feb 2025 22:05:25 GMT Subject: RFR: Fix SCCache stats logged on exit [v2] In-Reply-To: References: Message-ID: <2i6H_BEWCHZ-fPuRA9jlPcv_XZ7CPbTBa6tBPxVMzc0=.88a48f26-23d5-4d69-b800-6747326730d9@github.com> > The count of various SCCEntry kinds is not correctly computed. This patch fixes it. > This code was introduced as part of i2c2i adapters and was picked up from Andrew Dinn's work on storing stub and blobs. Clearly I messed it up. > The patch also computes and shows the counts for old entries and new entries separately. Though not useful for now, but in incremental workflow it may be helpful to distinguish between the old and new entries. Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: Add AOTCodeStats to collect stats about the AOT code Signed-off-by: Ashutosh Mehra ------------- Changes: - all: https://git.openjdk.org/leyden/pull/42/files - new: https://git.openjdk.org/leyden/pull/42/files/dd9432eb..3ae2b845 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=42&range=01 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=42&range=00-01 Stats: 291 lines in 2 files changed: 195 ins; 67 del; 29 mod Patch: https://git.openjdk.org/leyden/pull/42.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/42/head:pull/42 PR: https://git.openjdk.org/leyden/pull/42 From asmehra at openjdk.org Thu Feb 20 22:38:27 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 20 Feb 2025 22:38:27 GMT Subject: RFR: Fix SCCache stats logged on exit [v3] In-Reply-To: References: Message-ID: > The count of various SCCEntry kinds is not correctly computed. This patch fixes it. > This code was introduced as part of i2c2i adapters and was picked up from Andrew Dinn's work on storing stub and blobs. Clearly I messed it up. > The patch also computes and shows the counts for old entries and new entries separately. Though not useful for now, but in incremental workflow it may be helpful to distinguish between the old and new entries. Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: Fix compile failures Signed-off-by: Ashutosh Mehra ------------- Changes: - all: https://git.openjdk.org/leyden/pull/42/files - new: https://git.openjdk.org/leyden/pull/42/files/3ae2b845..d1037c0e Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=42&range=02 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=42&range=01-02 Stats: 3 lines in 1 file changed: 2 ins; 1 del; 0 mod Patch: https://git.openjdk.org/leyden/pull/42.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/42/head:pull/42 PR: https://git.openjdk.org/leyden/pull/42 From asmehra at openjdk.org Thu Feb 20 22:45:15 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 20 Feb 2025 22:45:15 GMT Subject: RFR: Fix SCCache stats logged on exit [v4] In-Reply-To: References: Message-ID: > The count of various SCCEntry kinds is not correctly computed. This patch fixes it. > This code was introduced as part of i2c2i adapters and was picked up from Andrew Dinn's work on storing stub and blobs. Clearly I messed it up. > The patch also computes and shows the counts for old entries and new entries separately. Though not useful for now, but in incremental workflow it may be helpful to distinguish between the old and new entries. Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: Display stats only if not 0 Signed-off-by: Ashutosh Mehra ------------- Changes: - all: https://git.openjdk.org/leyden/pull/42/files - new: https://git.openjdk.org/leyden/pull/42/files/d1037c0e..7bde7dee Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=42&range=03 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=42&range=02-03 Stats: 11 lines in 1 file changed: 4 ins; 0 del; 7 mod Patch: https://git.openjdk.org/leyden/pull/42.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/42/head:pull/42 PR: https://git.openjdk.org/leyden/pull/42 From asmehra at openjdk.org Thu Feb 20 22:45:16 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 20 Feb 2025 22:45:16 GMT Subject: RFR: Fix SCCache stats logged on exit [v3] In-Reply-To: References: Message-ID: On Thu, 20 Feb 2025 22:38:27 GMT, Ashutosh Mehra wrote: >> The count of various SCCEntry kinds is not correctly computed. This patch fixes it. >> This code was introduced as part of i2c2i adapters and was picked up from Andrew Dinn's work on storing stub and blobs. Clearly I messed it up. >> The patch also computes and shows the counts for old entries and new entries separately. Though not useful for now, but in incremental workflow it may be helpful to distinguish between the old and new entries. > > Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: > > Fix compile failures > > Signed-off-by: Ashutosh Mehra I have pushed another change that refactors the way stats are collected and do it in a more organized way rather than in a ad-hoc manner. I have separated the stats into two categories - stats for the code as stored in the AOT Cache, and stats reflecting runtime characteristic of the code. Note that it does not change the stats that are printed on `-Xlog:init`, but it gives a slightly better breakdown on exit (`-Xlog:scc+exit`) with stats for each compilation tier. So now on exit it shows following: [7.544s][info ][scc,exit] Wrote 2209 SCCEntry entries(181748 max size) to AOT Code Cache [7.544s][info ][scc,exit] Adapter: total=545(old=0+new=545) [7.544s][info ][scc,exit] Stub: total=3(old=0+new=3) [7.544s][info ][scc,exit] Blob: total=1(old=0+new=1) [7.544s][info ][scc,exit] Code: total=1660(old=0+new=1660) [7.544s][info ][scc,exit] Tier 1: total=103(old=0+new=103) [7.544s][info ][scc,exit] Tier 2: total=1176(old=0+new=1176) [7.544s][info ][scc,exit] Tier 4: total=191(old=0+new=191) [7.544s][info ][scc,exit] Tier 5: total=190(old=0+new=190) [7.544s][info ][scc,exit] Total=2209(old=0+new=2209) ------------- PR Comment: https://git.openjdk.org/leyden/pull/42#issuecomment-2672860290 From asmehra at openjdk.org Thu Feb 20 23:03:43 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 20 Feb 2025 23:03:43 GMT Subject: RFR: Fix SCCache stats logged on exit [v5] In-Reply-To: References: Message-ID: > The count of various SCCEntry kinds is not correctly computed. This patch fixes it. > This code was introduced as part of i2c2i adapters and was picked up from Andrew Dinn's work on storing stub and blobs. Clearly I messed it up. > The patch also computes and shows the counts for old entries and new entries separately. Though not useful for now, but in incremental workflow it may be helpful to distinguish between the old and new entries. Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: Fix whitespace error Signed-off-by: Ashutosh Mehra ------------- Changes: - all: https://git.openjdk.org/leyden/pull/42/files - new: https://git.openjdk.org/leyden/pull/42/files/7bde7dee..4f05db98 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=42&range=04 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=42&range=03-04 Stats: 8 lines in 1 file changed: 0 ins; 0 del; 8 mod Patch: https://git.openjdk.org/leyden/pull/42.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/42/head:pull/42 PR: https://git.openjdk.org/leyden/pull/42 From kvn at openjdk.org Thu Feb 20 23:03:43 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Thu, 20 Feb 2025 23:03:43 GMT Subject: RFR: Fix SCCache stats logged on exit [v4] In-Reply-To: References: Message-ID: On Thu, 20 Feb 2025 22:45:15 GMT, Ashutosh Mehra wrote: >> The count of various SCCEntry kinds is not correctly computed. This patch fixes it. >> This code was introduced as part of i2c2i adapters and was picked up from Andrew Dinn's work on storing stub and blobs. Clearly I messed it up. >> The patch also computes and shows the counts for old entries and new entries separately. Though not useful for now, but in incremental workflow it may be helpful to distinguish between the old and new entries. > > Ashutosh Mehra has updated the pull request incrementally with one additional commit since the last revision: > > Display stats only if not 0 > > Signed-off-by: Ashutosh Mehra Nice. Looks like you have tabs instead of spaces in few places. ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/42#pullrequestreview-2631375417 PR Comment: https://git.openjdk.org/leyden/pull/42#issuecomment-2672894405 From asmehra at openjdk.org Thu Feb 20 23:18:03 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Thu, 20 Feb 2025 23:18:03 GMT Subject: RFR: Fix SCCache stats logged on exit [v4] In-Reply-To: References: Message-ID: On Thu, 20 Feb 2025 22:58:36 GMT, Vladimir Kozlov wrote: > Looks like you have tabs instead of spaces in few places. Fixed it. ------------- PR Comment: https://git.openjdk.org/leyden/pull/42#issuecomment-2672919623 From asmehra at openjdk.org Fri Feb 21 02:47:27 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Fri, 21 Feb 2025 02:47:27 GMT Subject: git: openjdk/leyden: premain: Fix SCCache stats logged on exit Message-ID: Changeset: e968da78 Branch: premain Author: Ashutosh Mehra Date: 2025-02-21 02:46:45 +0000 URL: https://git.openjdk.org/leyden/commit/e968da7887259b72adc041500c7f58946a51c647 Fix SCCache stats logged on exit Reviewed-by: kvn ! src/hotspot/share/code/SCCache.cpp ! src/hotspot/share/code/SCCache.hpp From asmehra at openjdk.org Fri Feb 21 02:49:08 2025 From: asmehra at openjdk.org (Ashutosh Mehra) Date: Fri, 21 Feb 2025 02:49:08 GMT Subject: Integrated: Fix SCCache stats logged on exit In-Reply-To: References: Message-ID: On Fri, 14 Feb 2025 03:00:16 GMT, Ashutosh Mehra wrote: > The count of various SCCEntry kinds is not correctly computed. This patch fixes it. > This code was introduced as part of i2c2i adapters and was picked up from Andrew Dinn's work on storing stub and blobs. Clearly I messed it up. > The patch also computes and shows the counts for old entries and new entries separately. Though not useful for now, but in incremental workflow it may be helpful to distinguish between the old and new entries. This pull request has now been integrated. Changeset: e968da78 Author: Ashutosh Mehra URL: https://git.openjdk.org/leyden/commit/e968da7887259b72adc041500c7f58946a51c647 Stats: 299 lines in 2 files changed: 202 ins; 62 del; 35 mod Fix SCCache stats logged on exit Reviewed-by: kvn ------------- PR: https://git.openjdk.org/leyden/pull/42 From iklam at openjdk.org Fri Feb 21 03:11:08 2025 From: iklam at openjdk.org (Ioi Lam) Date: Fri, 21 Feb 2025 03:11:08 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v4] In-Reply-To: References: Message-ID: <_-_VbyMzjEdlTo8qbIlM1b07istYQUsRZH5yqzw8AAw=.ab9d6a37-f6cc-4ebe-a133-ad5e5d8993b5@github.com> On Thu, 20 Feb 2025 18:22:40 GMT, Mat Carter wrote: >> Add support to the AOT cache for References (soft, weak and phantom) >> Remove the workarounds that were added because References weren't supported >> >> Confirmed from logs that References are stored in the cache correctly >> >> All demos run successfully on osx > > Mat Carter has updated the pull request incrementally with one additional commit since the last revision: > > Revert back to pre JEP 483 form Looks good to me. Just a small nit. I ran the Leyden test cases in our CI and didn't see any regressions. src/java.base/share/classes/java/lang/invoke/MethodTypeForm.java line 147: > 145: * Eagerly compute some basic properties of the type, common to all variations. > 146: */ > 147: @SuppressWarnings({"rawtypes", "unchecked"}) Unintentional whitespace change. ------------- Marked as reviewed by iklam (Committer). PR Review: https://git.openjdk.org/leyden/pull/41#pullrequestreview-2631755489 PR Review Comment: https://git.openjdk.org/leyden/pull/41#discussion_r1964718633 From iklam at openjdk.org Fri Feb 21 06:25:34 2025 From: iklam at openjdk.org (Ioi Lam) Date: Fri, 21 Feb 2025 06:25:34 GMT Subject: git: openjdk/leyden: created branch merge2 based on the branch premain containing 107 unique commits Message-ID: <2e688ff3-dc65-4a23-b047-f05b80a4adbb@openjdk.org> The following commits are unique to the merge2 branch: ======================================================== 1ed9ef1c: 8349559: Compiler interface doesn't need to store protection domain 5395ffa0: 8327378: XMLStreamReader throws EOFException instead of XMLStreamException e9278de3: 8348411: C2: Remove the control input of LoadKlassNode and LoadNKlassNode 7d52f1e6: 8349525: RBTree: provide leftmost, rightmost, and a simple way to print trees 8f6ccde9: 8349554: [UBSAN] os::attempt_reserve_memory_between reported applying non-zero offset to non-null pointer produced null pointer 4a83ca12: 8349666: RISC-V: enable superwords tests for vector reductions d104debe: 8349556: RISC-V: improve the performance when -COH and -AvoidUnalignedAccesses for UL and LU string comparison 55898922: 8343074: test/jdk/com/sun/net/httpserver/docs/test1/largefile.txt could be generated c9cadbd2: 8346567: Make Class.getModifiers() non-native f74c4dfe: 8349580: Do not use address in MemTracker top level functions ab66c82c: 8349639: jfr/event/gc/detailed/TestShenandoahEvacuationInformationEvent.java fails to compile after JDK-8348610 84b32cb6: 8349178: runtime/jni/atExit/TestAtExit.java should be supported on static JDK b737f7fb: 8349501: Relocate supporting classes in security/testlibrary to test/lib/jdk tree f11a7377: 8349475: Test tools/javac/api/TestJavacTaskWithWarning.java writes files in src dir 527489c0: 8349284: Make libExplicitAttach work on static JDK df654a9f: 8349752: Tier1 build failure caused by JDK-8349178 41bdc47d: 8208377: Soft hyphens render if not using TextLayout 1a8212e1: 8348678: [PPC64] C2: unaligned vector load/store is ok 8e858294: 8349213: G1: Clearing bitmaps during collection set merging not claimed by region 964dd18f: 8349515: [REDO] Framework for tracing makefile inclusion and parsing 5ee44c16: 8349662: SSLTube SSLSubscriptionWrapper has potential races when switching subscriptions 545d19f1: 8349771: Replace usages of -mx and -ms in some monitor tests ee079fdb: 8349820: Temporarily increase MemLimit for tests until JDK-8349772 and JDK-8337821 are fixed a1bcda24: 8349579: jsvml.dll incorrect RDATA SEGMENT specification 32dc41c9: 8349624: Validation for slot missing in CodeBuilder local variable instructions 64281653: 8349254: Disable "best-fit" mapping on Windows environment variables e7157d17: 8150442: Enforce Supported Platforms in Packager for MSI bundles 8c09d40d: 8348268: Test gc/shenandoah/TestResizeTLAB.java#compact: fatal error: Before Updating References: Thread C2 CompilerThread1: expected gc-state 9, actual 21 d558d9d4: 8349702: jdk.internal.net.http.Http2Connection::putStream needs to provide cause while cancelling stream 88b4a906: 8349689: Several virtual thread tests missing /native keyword 342dec93: 8347019: Test javax/swing/JRadioButton/8033699/bug8033699.java still fails: Focus is not on Radio Button Single as Expected adda12b7: 8349874: Missing comma in copyright from JDK-8349689 bb41df44: 8349723: Problemlist jdp tests for macosx-x64 08f4c1c8: 8349781: make test TEST=gtest fails on WSL e700460b: 8349813: Test behavior of limiting() on RS operators throwing exceptions ed17c55e: 8349145: Make Class.getProtectionDomain() non-native 73e1780a: 8349836: G1: Improve group prediction log message 332d87cc: 8349859: Support static JDK in libfontmanager/freetypeScaler.c 4b463ee7: 8342103: C2 compiler support for Float16 type and associated scalar operations 336d0d85: 8349926: [BACKOUT] Support static JDK in libfontmanager/freetypeScaler.c c5ac3c4f: 8249831: Test sun/security/mscapi/nonUniqueAliases/NonUniqueAliases.java is marked with @ignore ba281196: 8348427: DeferredLintHandler API should use JCTree instead of DiagnosticPosition 74e458ba: 8349684: Remove SA core file tests from problem list for macosx-x64 2a5d1da3: 8349571: Remove JavaThreadFactory interface from SA 7a0832f5: 8349934: Wrong file regex for copyright header format check in .jcheck/conf b8576eb4: 6562489: Font-Renderer should ignore invisible characters \u2062 and \u2063 55097dd4: 8344802: Crash in StubRoutines::verify_mxcsr with -XX:+EnableX86ECoreOpts and -Xcheck:jni adc3f53d: 8349787: java/lang/Thread/virtual/ThreadPollOnYield.java#default passes unexpectedly without libVThreadPinner.so a637ccf2: 8349851: RISC-V: Call VM leaf can use movptr2 24b7f815: 8349783: g1RemSetSummary.cpp:344:68: runtime error: member call on null pointer of type 'struct G1HeapRegion' 29202d1f: 8349648: Test tools/jpackage/share/JLinkOptionsTest.java fails with --enable-linkable-runtime set after JDK-8346434 efc597bf: 8349564: Clean warnings found in jpackage tests when building them with -Xlint:all add3cd1c: 8348600: Update PipeWire to 1.3.81 5b75ff72: 8349907: jdk.tools.jlink.internal.plugins.ZipPlugin does not close the Deflater in exceptional cases c2fc9478: 8349378: Build splashscreen lib with SIZE optimization 18958c62: 8349925: [REDO] Support static JDK in libfontmanager/freetypeScaler.c 0b50e479: 8349753: Incorrect use of CodeBlob::is_buffer_blob() in few places 28e744dc: 8348092: Shenandoah: assert(nk >= _lowest_valid_narrow_klass_id && nk <= _highest_valid_narrow_klass_id) failed: narrowKlass ID out of range (3131947710) 6ddbcc34: 8328119: Support HKDF in SunPKCS11 (Preview) 2eac490b: 8349868: Remove unneeded libjava shared library dependency from jtreg test libNewDirectByteBuffer, libDirectIO and libInheritedChannel a88e2a58: 8349977: JVMCIRuntime::_shared_library_javavm_id should be jlong d8fcd43a: 8349927: Waiting for compiler termination delays shutdown for 10+ ms 3e7acfac: 8349873: StackOverflowError after JDK-8342550 if -Duser.timezone= is set to a deprecated zone id 3741c980: 8349883: Locale.LanguageRange.parse("-") throws ArrayIndexOutOfBoundsException ff52859d: 8285624: jpackage fails to create exe, msi when Windows OS is in FIPS mode 57f4c30f: 8347917: AArch64: Enable upper GPR registers in C1 fa1bd234: 8343802: Prevent NULL usage backsliding 19c0ce43: 8349751: AIX build failure after upgrade pipewire to 1.3.81 db42a48d: 8350011: Convert jpackage test lib tests in JUnit format 742e735d: 8349858: Print compilation task before blocking compiler thread for shutdown 9ea81d90: 8349351: Combine Screen Inset Tests into a Single File 0414dcec: 8349812: (fs) Files.newByteChannel with empty path name and CREATE_NEW throws unexpected exception 2a90b90a: 8346117: Add test annotation 38322407: 8348594: Shenandoah: Do not penalize for degeneration when not the fault of triggering heuristic ba6c9659: 8348595: GenShen: Fix generational free-memory no-progress check b6443f6f: 8348347: Cleanup JavaThread subclass support in SA 62345364: 8349915: CTW: Lots of level 3 compiles are done at level 2 after JDK-8348570 5cf11324: 8350098: jpackage test lib erroneously will run methods without @Test annotation as tests 7d11418c: 8350147: Replace example in KEM class with the one from JEP 452 21927237: 8350162: ProblemList compiler/tiered/Level2RecompilationTest.java 5e9d72e2: 8350094: Linux gcc 13.2.0 build fails when ubsan is enabled b1b48286: 8350086: Inline hot Method accessors for faster task selection f1258f9e: 8349755: Fix corner case issues in async UL 071c8f51: 8349909: jdk.internal.jimage.decompressor.ZipDecompressor does not close the Inflater in exceptional cases b3a4026c: 8349764: RISC-V: C1: Improve Class.isInstance intrinsic 7f3ecb4d: 8346664: C2: Optimize mask check with constant offset 2bd8f026: 8342524: Use latch in AbstractButton/bug6298940.java instead of delay 906358d3: 8294155: Exception thrown before awaitAndCheck hangs PassFailJFrame 650d0d95: 8348865: JButton/bug4796987.java never runs because Windows XP is unavailable 8b2aa51b: 8349780: AIX os::get_summary_cpu_info support Power 11 3f0c1370: 8347123: Add missing @serial tags to other modules 8ec58939: 8346781: [JVMCI] Limit ServiceLoader to class initializers 8df80400: 8350093: RISC-V: java/math/BigInteger/LargeValueExceptions.java timeout with COH 3353f8e0: 8349652: Rewire nmethod oop load barriers 013fda1d: 8348172: C2: Remove unused local variables in filter_helper() methods ff05d979: 8349180: Remove redundant initialization in ciField constructor 160db5f0: 8340110: Ubsan: verifier.cpp:2043:19: runtime error: shift exponent 100 is too large for 32-bit type 'int' d7baae3e: 8350178: Incorrect comment after JDK-8345580 8193e0d5: 8346280: C2: implement late barrier elision for G1 885be2ef: 8349908: RISC-V: C2 SelectFromTwoVector e1d0a9c8: 8350202: Tune for Power10 CPUs on Linux ppc64le 62d93f2a: 8346050: Update BuildTestLib.gmk to build whole testlibrary fe713ff6: Merge branch 'master' into premain 46d4a601: 8349088: De-virtualize Codeblob and nmethod f2b4e12a: 8350263: JvmciNotifyBootstrapFinishedEventTest intermittently times out 2d03bd00: 8350280: The JDK-8346050 testlibrary changes break the build 250c2d44: Merge branch 'master' into premain From shade at openjdk.org Fri Feb 21 10:41:44 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 21 Feb 2025 10:41:44 GMT Subject: RFR: 8350488: [leyden] Experimental AOT-only mode Message-ID: There are interesting use cases where we want the AOT-only mode. We can emulate this in current Leyden prototype by relying on preload code, and stopping any profiling, which would naturally lead to no JIT compilations. This would also make interpreter code a bit faster in case we need to fall back there. This mode looks also helpful for studying the compiler dynamics. Additional testing: - [x] Eyeballing compilation logs with `-XX:+PreloadOnly` - [ ] Linux x86_64 server fastdebug, `runtime/cds` - [ ] Linux x86_64 server fastdebug, `runtime/cds` with `-XX:+PreloadOnly` ------------- Commit messages: - Also do PreloadOnly in other arches template interpreters - Fix Changes: https://git.openjdk.org/leyden/pull/44/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=44&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8350488 Stats: 34 lines in 10 files changed: 22 ins; 0 del; 12 mod Patch: https://git.openjdk.org/leyden/pull/44.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/44/head:pull/44 PR: https://git.openjdk.org/leyden/pull/44 From shade at openjdk.org Fri Feb 21 11:03:08 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 21 Feb 2025 11:03:08 GMT Subject: RFR: 8350488: [leyden] Experimental AOT-only mode In-Reply-To: References: Message-ID: On Fri, 21 Feb 2025 10:36:19 GMT, Aleksey Shipilev wrote: > There are interesting use cases where we want the AOT-only mode. We can emulate this in current Leyden prototype by relying on preload code, and stopping any profiling, which would naturally lead to no JIT compilations. This would also make interpreter code a bit faster in case we need to fall back there. This mode looks also helpful for studying the compiler dynamics. > > Additional testing: > - [x] Eyeballing compilation logs with `-XX:+PreloadOnly` > - [ ] Linux x86_64 server fastdebug, `runtime/cds` > - [ ] Linux x86_64 server fastdebug, `runtime/cds` with `-XX:+PreloadOnly` Sample performance results, after pre-training `JavacBenchApp` with 200x iterations: # === 32 cores # Default Time (mean ? ?): 403.4 ms ? 6.5 ms [User: 1082.1 ms, System: 167.6 ms] Range (min ? max): 387.6 ms ? 417.7 ms 30 runs # -XX:+PreloadOnly Time (mean ? ?): 439.1 ms ? 5.3 ms [User: 544.2 ms, System: 84.2 ms] Range (min ? max): 430.3 ms ? 456.2 ms 30 runs # === 2 cores # Default Time (mean ? ?): 531.8 ms ? 30.1 ms [User: 870.9 ms, System: 114.3 ms] Range (min ? max): 479.6 ms ? 606.8 ms 30 runs # -XX:+PreloadOnly Time (mean ? ?): 425.8 ms ? 6.4 ms [User: 530.2 ms, System: 76.4 ms] Range (min ? max): 418.9 ms ? 451.4 ms 30 runs In both cases, "user" time goes down because we have no additional code load / JIT compilations. In 32-core case, we can see that peak performance suffers a bit, since preload code is not 100% efficient. The combination of these two factors is a net benefit in 2-core case: not doing JIT compilations more than pays for preload code inefficiency. This tradeoff of course depends on how well-trained the scenario is. ------------- PR Comment: https://git.openjdk.org/leyden/pull/44#issuecomment-2674246858 From shade at openjdk.org Fri Feb 21 11:12:07 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 21 Feb 2025 11:12:07 GMT Subject: RFR: 8350488: [leyden] Experimental AOT-only mode In-Reply-To: References: Message-ID: On Fri, 21 Feb 2025 10:36:19 GMT, Aleksey Shipilev wrote: > There are interesting use cases where we want the AOT-only mode. We can emulate this in current Leyden prototype by relying on preload code, and stopping any profiling, which would naturally lead to no JIT compilations. This would also make interpreter code a bit faster in case we need to fall back there. This mode looks also helpful for studying the compiler dynamics. > > Additional testing: > - [x] Eyeballing compilation logs with `-XX:+PreloadOnly` > - [ ] Linux x86_64 server fastdebug, `runtime/cds` > - [ ] Linux x86_64 server fastdebug, `runtime/cds` with `-XX:+PreloadOnly` Plus, preload code needs to be a bit more resilient to invalidations, which would improve the perf gap here: https://github.com/openjdk/leyden/pull/38. With that POC patch applied, the peak performance gap shortens considerably: # === 32 cores # Default Time (mean ? ?): 404.0 ms ? 17.0 ms [User: 1070.5 ms, System: 168.6 ms] Range (min ? max): 381.0 ms ? 464.8 ms 30 runs # -XX:+PreloadOnly Time (mean ? ?): 415.1 ms ? 5.8 ms [User: 525.3 ms, System: 82.5 ms] Range (min ? max): 403.8 ms ? 428.4 ms 30 runs # === 2 cores # Default Time (mean ? ?): 533.0 ms ? 29.3 ms [User: 867.6 ms, System: 114.9 ms] Range (min ? max): 463.6 ms ? 587.6 ms 30 runs # -XX:+PreloadOnly Time (mean ? ?): 404.5 ms ? 4.1 ms [User: 508.8 ms, System: 78.4 ms] Range (min ? max): 399.6 ms ? 419.4 ms 30 runs ------------- PR Comment: https://git.openjdk.org/leyden/pull/44#issuecomment-2674265650 From shade at openjdk.org Fri Feb 21 12:56:44 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 21 Feb 2025 12:56:44 GMT Subject: RFR: 8349814: [leyden] Reduce uncommon traps in preload code [v3] In-Reply-To: References: Message-ID: > Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. > > Additional testing: > - [x] Ad-hoc perf tests (see comment below) > - [x] Linux x86_64 server fastdebug, `runtime/cds` Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains three commits: - Shuffle things around to capture more cases - Comment - Fix ------------- Changes: https://git.openjdk.org/leyden/pull/38/files Webrev: https://webrevs.openjdk.org/?repo=leyden&pr=38&range=02 Stats: 29 lines in 4 files changed: 29 ins; 0 del; 0 mod Patch: https://git.openjdk.org/leyden/pull/38.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/38/head:pull/38 PR: https://git.openjdk.org/leyden/pull/38 From shade at openjdk.org Fri Feb 21 12:56:44 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 21 Feb 2025 12:56:44 GMT Subject: RFR: 8349814: [leyden] Reduce uncommon traps in preload code [v2] In-Reply-To: References: Message-ID: <223iCeG2itU5B8oB2NpNK8HnokMfmAsbuhOfqDvf460=.978e2384-86da-482a-b48f-28ae84dd93fa@github.com> On Tue, 11 Feb 2025 17:06:32 GMT, Vladimir Ivanov wrote: >> Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. > > src/hotspot/share/compiler/precompiler.cpp line 235: > >> 233: >> 234: { >> 235: // For preload code, avoid any uncommon traps. > > Why don't you instrument `Compile::too_many_traps()` instead? (Check for compilation reason and unconditionally return true when compiling code for preloading.) > > Also, it would be useful to make new logic conditional (controlled by a diagnostic flag). It would make it easier to measure deoptimization-induced performance effects at runtime. Yes, good ideas, done so. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/38#discussion_r1965425814 From shade at openjdk.org Fri Feb 21 12:56:45 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 21 Feb 2025 12:56:45 GMT Subject: RFR: 8349814: [leyden] Reduce uncommon traps in preload code [v2] In-Reply-To: References: Message-ID: <-Fjv1v5fEeb_WBxp9IXxrPsmVoPE5D9rElGnRcr2r3g=.bf808625-3392-4440-83ee-f28baea27c2a@github.com> On Tue, 11 Feb 2025 20:52:30 GMT, Vladimir Ivanov wrote: >> src/hotspot/share/runtime/deoptimization.cpp line 2130: >> >>> 2128: tm->name_and_sig_as_C_string(), trap_bci, nm->compiler_name()); >>> 2129: >>> 2130: if (nm->preloaded() && (action != Action_none)) { >> >> At some point, I added SCC-related info to `TraceDeoptimization` output [1], but it turns out I didn't upstream it. (I had a script which parsed the log and aggregated information about deopts in archived code.) >> >> Maybe it's better to upstream it instead of introducing such adhoc logging. >> >> [1] https://github.com/iwanowww/leyden/blame/premain-precompile/src/hotspot/share/runtime/deoptimization.cpp#L2151 > > But speaking of monitoring for uncommon traps in generated code: the ultimate goal may be to completely eliminate uncommon traps in preloaded code. In that respect, it's more interesting to monitor for all uncommon traps issued during compilation rather than those hit at runtime. > > For C2 it's `GraphKit::uncommon_trap()`, so I suggest to move the code there. Also, additional information about compilation (id) and location (jvms info) is useful to pin down the root cause. Yeah. I added logging at `GraphKit::uncommon_trap`. That logging is super-noisy. So I left the tracing code that warns when we trigger the actual deopt by stepping on such trap. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/38#discussion_r1965428010 From macarte at openjdk.org Fri Feb 21 16:44:27 2025 From: macarte at openjdk.org (Mat Carter) Date: Fri, 21 Feb 2025 16:44:27 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v5] In-Reply-To: References: Message-ID: <1CDhT56TpZELvE8RL89YLmlBeaQa27yBfPe0O6E3jPU=.90c8cc08-5942-47ec-8680-c55c5a847e86@github.com> > Add support to the AOT cache for References (soft, weak and phantom) > Remove the workarounds that were added because References weren't supported > > Confirmed from logs that References are stored in the cache correctly > > All demos run successfully on osx Mat Carter has updated the pull request incrementally with one additional commit since the last revision: remove a whitespace ------------- Changes: - all: https://git.openjdk.org/leyden/pull/41/files - new: https://git.openjdk.org/leyden/pull/41/files/8352c429..68fafff8 Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=41&range=04 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=41&range=03-04 Stats: 1 line in 1 file changed: 0 ins; 0 del; 1 mod Patch: https://git.openjdk.org/leyden/pull/41.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/41/head:pull/41 PR: https://git.openjdk.org/leyden/pull/41 From iklam at openjdk.org Fri Feb 21 16:57:12 2025 From: iklam at openjdk.org (Ioi Lam) Date: Fri, 21 Feb 2025 16:57:12 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v5] In-Reply-To: <1CDhT56TpZELvE8RL89YLmlBeaQa27yBfPe0O6E3jPU=.90c8cc08-5942-47ec-8680-c55c5a847e86@github.com> References: <1CDhT56TpZELvE8RL89YLmlBeaQa27yBfPe0O6E3jPU=.90c8cc08-5942-47ec-8680-c55c5a847e86@github.com> Message-ID: On Fri, 21 Feb 2025 16:44:27 GMT, Mat Carter wrote: >> Add support to the AOT cache for References (soft, weak and phantom) >> Remove the workarounds that were added because References weren't supported >> >> Confirmed from logs that References are stored in the cache correctly >> >> All demos run successfully on osx > > Mat Carter has updated the pull request incrementally with one additional commit since the last revision: > > remove a whitespace Marked as reviewed by iklam (Committer). ------------- PR Review: https://git.openjdk.org/leyden/pull/41#pullrequestreview-2633697038 From iklam at openjdk.org Fri Feb 21 17:03:01 2025 From: iklam at openjdk.org (Ioi Lam) Date: Fri, 21 Feb 2025 17:03:01 GMT Subject: git: openjdk/leyden: premain: 107 new changesets Message-ID: Changeset: 1ed9ef1c Branch: premain Author: Coleen Phillimore Date: 2025-02-07 21:27:35 +0000 URL: https://git.openjdk.org/leyden/commit/1ed9ef1c3f787b4075974d5dcfde1606d6bfbe86 8349559: Compiler interface doesn't need to store protection domain Reviewed-by: vlivanov, iklam ! src/hotspot/share/ci/ciInstanceKlass.cpp ! src/hotspot/share/ci/ciInstanceKlass.hpp ! src/hotspot/share/ci/ciKlass.hpp ! src/hotspot/share/ci/ciObjArrayKlass.hpp ! src/hotspot/share/ci/ciObjectFactory.cpp Changeset: 5395ffa0 Branch: premain Author: Joe Wang Date: 2025-02-08 02:48:04 +0000 URL: https://git.openjdk.org/leyden/commit/5395ffa006d06fb2b6a087885a9d7118048e6696 8327378: XMLStreamReader throws EOFException instead of XMLStreamException Reviewed-by: iris, lancea, naoto ! src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/XMLDTDScannerImpl.java ! src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl.java + test/jaxp/javax/xml/jaxp/unittest/stream/XMLStreamReaderTest/ExceptionTest.java Changeset: e9278de3 Branch: premain Author: Quan Anh Mai Date: 2025-02-08 04:20:46 +0000 URL: https://git.openjdk.org/leyden/commit/e9278de3f8676c288bfdce96f8348470e7c42900 8348411: C2: Remove the control input of LoadKlassNode and LoadNKlassNode Reviewed-by: vlivanov, epeter ! src/hotspot/share/opto/doCall.cpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/macro.cpp ! src/hotspot/share/opto/macroArrayCopy.cpp ! src/hotspot/share/opto/memnode.cpp ! src/hotspot/share/opto/memnode.hpp ! src/hotspot/share/opto/parse1.cpp ! src/hotspot/share/opto/parseHelper.cpp ! src/hotspot/share/opto/subtypenode.cpp Changeset: 7d52f1e6 Branch: premain Author: Thomas Stuefe Date: 2025-02-08 06:35:27 +0000 URL: https://git.openjdk.org/leyden/commit/7d52f1e64d17d4a77dacc6074ead11e975eed9eb 8349525: RBTree: provide leftmost, rightmost, and a simple way to print trees Reviewed-by: jsjolen, cnorrbin ! src/hotspot/share/utilities/rbTree.hpp ! src/hotspot/share/utilities/rbTree.inline.hpp ! test/hotspot/gtest/utilities/test_rbtree.cpp Changeset: 8f6ccde9 Branch: premain Author: SendaoYan Date: 2025-02-08 13:11:07 +0000 URL: https://git.openjdk.org/leyden/commit/8f6ccde9829ea0e4fe1c087e68bec4d9efb55c64 8349554: [UBSAN] os::attempt_reserve_memory_between reported applying non-zero offset to non-null pointer produced null pointer Reviewed-by: stefank, stuefe ! src/hotspot/share/runtime/os.cpp Changeset: 4a83ca12 Branch: premain Author: Hamlin Li Date: 2025-02-10 11:25:20 +0000 URL: https://git.openjdk.org/leyden/commit/4a83ca120293aecbf21d7d005ba256e95fe98299 8349666: RISC-V: enable superwords tests for vector reductions Reviewed-by: fyang, luhenry ! test/hotspot/jtreg/compiler/loopopts/superword/MinMaxRed_Int.java ! test/hotspot/jtreg/compiler/loopopts/superword/RedTest_int.java ! test/hotspot/jtreg/compiler/loopopts/superword/RedTest_long.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRedAbsNeg_Float.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRedSqrt_Double.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRed_Double.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRed_Float.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRed_Int.java ! test/hotspot/jtreg/compiler/loopopts/superword/SumRed_Long.java Changeset: d104debe Branch: premain Author: Hamlin Li Date: 2025-02-10 11:47:57 +0000 URL: https://git.openjdk.org/leyden/commit/d104debe51d8feb35b7c672a9d05404208bc5526 8349556: RISC-V: improve the performance when -COH and -AvoidUnalignedAccesses for UL and LU string comparison Reviewed-by: fyang, vkempik ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/stubGenerator_riscv.cpp Changeset: 55898922 Branch: premain Author: Volkan Yazici Committer: Jaikiran Pai Date: 2025-02-10 12:12:54 +0000 URL: https://git.openjdk.org/leyden/commit/55898922628a7fb1aef3ff6727a612baac3f6b1a 8343074: test/jdk/com/sun/net/httpserver/docs/test1/largefile.txt could be generated Reviewed-by: dfuchs, jpai ! test/jdk/com/sun/net/httpserver/SelCacheTest.java ! test/jdk/com/sun/net/httpserver/Test1.java ! test/jdk/com/sun/net/httpserver/Test12.java ! test/jdk/com/sun/net/httpserver/Test13.java ! test/jdk/com/sun/net/httpserver/Test9.java ! test/jdk/com/sun/net/httpserver/Test9a.java ! test/jdk/com/sun/net/httpserver/TestLogging.java - test/jdk/com/sun/net/httpserver/docs/test1/largefile.txt - test/jdk/com/sun/net/httpserver/docs/test1/smallfile.txt ! test/jdk/java/net/httpclient/http2/BasicTest.java ! test/jdk/java/net/httpclient/http2/FixedThreadPoolTest.java ! test/jdk/java/net/httpclient/http2/ServerPush.java - test/jdk/java/net/httpclient/lib/jdk/httpclient/test/lib/common/TestUtil.java ! test/lib/jdk/test/lib/Asserts.java ! test/lib/jdk/test/lib/Utils.java Changeset: c9cadbd2 Branch: premain Author: Coleen Phillimore Date: 2025-02-10 12:44:30 +0000 URL: https://git.openjdk.org/leyden/commit/c9cadbd23fb13933b8968f283d27842cd35f8d6f 8346567: Make Class.getModifiers() non-native Reviewed-by: alanb, vlivanov, yzheng, dlong ! src/hotspot/share/c1/c1_Canonicalizer.cpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp ! src/hotspot/share/ci/ciKlass.hpp ! src/hotspot/share/classfile/classFileParser.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/vmIntrinsics.cpp ! src/hotspot/share/classfile/vmIntrinsics.hpp ! src/hotspot/share/jvmci/vmStructs_jvmci.cpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/oops/objArrayKlass.cpp ! src/hotspot/share/oops/typeArrayKlass.cpp ! src/hotspot/share/oops/typeArrayKlass.hpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/memnode.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/jvmtiEnv.cpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/jdk/internal/reflect/Reflection.java ! src/java.base/share/native/libjava/Class.c ! test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaType.java ! test/jdk/java/lang/reflect/AccessibleObject/ModuleSetAccessibleTest.java ! test/jdk/java/lang/reflect/AccessibleObject/TrySetAccessibleTest.java ! test/jdk/jdk/internal/reflect/Reflection/Filtering.java ! test/micro/org/openjdk/bench/java/lang/reflect/Clazz.java Changeset: f74c4dfe Branch: premain Author: Johan Sj?len Date: 2025-02-10 13:52:23 +0000 URL: https://git.openjdk.org/leyden/commit/f74c4dfe0b0c384a25f0b7a2330ba96d50b7fceb 8349580: Do not use address in MemTracker top level functions Reviewed-by: gziemski, stefank ! src/hotspot/os/posix/perfMemory_posix.cpp ! src/hotspot/os/windows/perfMemory_windows.cpp ! src/hotspot/share/nmt/memTracker.hpp ! src/hotspot/share/runtime/os.cpp Changeset: ab66c82c Branch: premain Author: Aleksey Shipilev Date: 2025-02-10 15:51:23 +0000 URL: https://git.openjdk.org/leyden/commit/ab66c82ce9fdb5ee3fd7690f42b8ad4d78bf5e40 8349639: jfr/event/gc/detailed/TestShenandoahEvacuationInformationEvent.java fails to compile after JDK-8348610 Reviewed-by: mdoerr, wkemper ! test/jdk/jdk/jfr/event/gc/detailed/TestShenandoahEvacuationInformationEvent.java Changeset: 84b32cb6 Branch: premain Author: Jiangli Zhou Date: 2025-02-10 18:05:27 +0000 URL: https://git.openjdk.org/leyden/commit/84b32cb61c3e04189eb811fa052747e21ca6aff1 8349178: runtime/jni/atExit/TestAtExit.java should be supported on static JDK Reviewed-by: dholmes ! make/test/JtregNativeHotspot.gmk ! test/hotspot/jtreg/runtime/jni/atExit/libatExit.c Changeset: b737f7fb Branch: premain Author: Jamil Nimeh Date: 2025-02-10 18:19:57 +0000 URL: https://git.openjdk.org/leyden/commit/b737f7fb3004e4e9c95fba95c6fcda70073ae00e 8349501: Relocate supporting classes in security/testlibrary to test/lib/jdk tree Reviewed-by: rhalade, weijun ! test/jdk/com/sun/security/auth/callback/TextCallbackHandler/Default.java ! test/jdk/java/security/KeyFactory/Failover.java ! test/jdk/java/security/KeyPairGenerator/Failover.java ! test/jdk/java/security/Provider/ChangeProviders.java ! test/jdk/java/security/Provider/GetInstance.java ! test/jdk/java/security/Provider/GetServiceRace.java ! test/jdk/java/security/Provider/RemoveProvider.java ! test/jdk/java/security/Security/NoInstalledProviders.java ! test/jdk/java/security/Security/SynchronizedAccess.java ! test/jdk/java/security/Security/removing/RemoveProviders.java ! test/jdk/java/security/cert/CertPathValidator/OCSP/GetAndPostTests.java ! test/jdk/java/security/cert/CertPathValidator/OCSP/OCSPTimeout.java ! test/jdk/java/security/cert/CertPathValidator/crlDP/CheckAllCRLs.java ! test/jdk/java/security/cert/CertPathValidator/trustAnchor/ValWithAnchorByName.java ! test/jdk/javax/crypto/EncryptedPrivateKeyInfo/GetKeySpecException.java ! test/jdk/javax/crypto/JceSecurity/SunJCE_BC_LoadOrdering.java ! test/jdk/javax/net/ssl/Stapling/HttpsUrlConnClient.java ! test/jdk/javax/net/ssl/Stapling/SSLEngineWithStapling.java ! test/jdk/javax/net/ssl/Stapling/SSLSocketWithStapling.java ! test/jdk/javax/net/ssl/Stapling/StapleEnableProps.java ! test/jdk/sun/security/ec/TestEC.java ! test/jdk/sun/security/pkcs11/ec/ReadCertificates.java ! test/jdk/sun/security/pkcs11/ec/ReadPKCS12.java ! test/jdk/sun/security/pkcs11/ec/TestECDH.java ! test/jdk/sun/security/pkcs11/ec/TestECDH2.java ! test/jdk/sun/security/pkcs11/ec/TestECDSA.java ! test/jdk/sun/security/pkcs11/ec/TestECDSA2.java ! test/jdk/sun/security/pkcs11/rsa/TestCACerts.java ! test/jdk/sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java ! test/jdk/sun/security/pkcs12/GetSetEntryTest.java ! test/jdk/sun/security/provider/certpath/OCSP/OCSPNoContentLength.java ! test/jdk/sun/security/provider/certpath/PKIXCertComparator/Order.java ! test/jdk/sun/security/ssl/Stapling/StatusResponseManager.java ! test/jdk/sun/security/ssl/Stapling/java.base/sun/security/ssl/StatusResponseManagerTests.java ! test/jdk/sun/security/tools/keytool/KeyToolTest.java ! test/jdk/sun/security/tools/keytool/NssTest.java ! test/jdk/sun/security/x509/URICertStore/AIACertTimeout.java = test/lib/jdk/test/lib/security/CertificateBuilder.java = test/lib/jdk/test/lib/security/HumanInputStream.java = test/lib/jdk/test/lib/security/Providers.java = test/lib/jdk/test/lib/security/ProvidersSnapshot.java = test/lib/jdk/test/lib/security/SimpleOCSPServer.java Changeset: f11a7377 Branch: premain Author: Joe Darcy Date: 2025-02-10 18:27:05 +0000 URL: https://git.openjdk.org/leyden/commit/f11a737707414f35738b630e0ffb482431259b0c 8349475: Test tools/javac/api/TestJavacTaskWithWarning.java writes files in src dir Reviewed-by: jlahoda, liach, jpai ! test/langtools/tools/javac/api/TestJavacTaskWithWarning.java Changeset: 527489c0 Branch: premain Author: Jiangli Zhou Date: 2025-02-10 20:19:48 +0000 URL: https://git.openjdk.org/leyden/commit/527489c06d827f5d08a8053bedcd26db4608c9f0 8349284: Make libExplicitAttach work on static JDK Reviewed-by: alanb, dholmes ! make/test/JtregNativeJdk.gmk ! test/jdk/java/lang/Thread/jni/AttachCurrentThread/libExplicitAttach.c Changeset: df654a9f Branch: premain Author: Jiangli Zhou Date: 2025-02-10 20:52:20 +0000 URL: https://git.openjdk.org/leyden/commit/df654a9f581ed9e43e3f329bb01204ac2fb9f509 8349752: Tier1 build failure caused by JDK-8349178 Reviewed-by: dholmes ! make/test/JtregNativeHotspot.gmk Changeset: 41bdc47d Branch: premain Author: Daniel Gredler Committer: Phil Race Date: 2025-02-11 00:39:09 +0000 URL: https://git.openjdk.org/leyden/commit/41bdc47d71340e5d7f4317a5040521868d4c4314 8208377: Soft hyphens render if not using TextLayout Reviewed-by: achung, prr ! src/java.desktop/macosx/classes/sun/font/CCharToGlyphMapper.java ! src/java.desktop/share/classes/sun/font/CMap.java ! src/java.desktop/share/classes/sun/font/FontUtilities.java ! src/java.desktop/share/classes/sun/font/TrueTypeGlyphMapper.java ! src/java.desktop/share/classes/sun/font/Type1GlyphMapper.java + test/jdk/java/awt/font/TextLayout/FormatCharAdvanceTest.java Changeset: 1a8212e1 Branch: premain Author: Richard Reingruber Date: 2025-02-11 07:45:55 +0000 URL: https://git.openjdk.org/leyden/commit/1a8212e1018744b360df310e85fc29f8c41f5072 8348678: [PPC64] C2: unaligned vector load/store is ok 8343906: test2 of compiler/c2/TestCastX2NotProcessedIGVN.java fails on some platforms Reviewed-by: mdoerr, amitkumar ! src/hotspot/cpu/ppc/matcher_ppc.hpp ! src/hotspot/cpu/ppc/vm_version_ppc.cpp ! test/hotspot/jtreg/compiler/c2/TestCastX2NotProcessedIGVN.java Changeset: 8e858294 Branch: premain Author: Thomas Schatzl Date: 2025-02-11 09:52:38 +0000 URL: https://git.openjdk.org/leyden/commit/8e8582949669d5f3dcb68886ccb6a719393d1a9e 8349213: G1: Clearing bitmaps during collection set merging not claimed by region Reviewed-by: iwalulya, ayang ! src/hotspot/share/gc/g1/g1RemSet.cpp Changeset: 964dd18f Branch: premain Author: Magnus Ihse Bursie Date: 2025-02-11 10:55:47 +0000 URL: https://git.openjdk.org/leyden/commit/964dd18fd2ba998e5c1efed48e15e516b0c22b19 8349515: [REDO] Framework for tracing makefile inclusion and parsing Reviewed-by: erikj ! .github/actions/get-gtest/action.yml ! .github/actions/get-jtreg/action.yml ! Makefile ! make/Bundles.gmk ! make/CompileCommands.gmk ! make/CompileDemos.gmk ! make/CompileInterimLangtools.gmk ! make/CompileJavaModules.gmk ! make/CompileModuleTools.gmk ! make/CompileToolsHotspot.gmk ! make/CompileToolsJdk.gmk ! make/CopyImportModules.gmk ! make/CopyInterimTZDB.gmk ! make/Coverage.gmk ! make/CreateJmods.gmk ! make/Docs.gmk ! make/Doctor.gmk ! make/ExplodedImageOptimize.gmk ! make/GenerateLinkOptData.gmk ! make/GenerateModuleSummary.gmk ! make/Global.gmk ! make/GraalBuilderImage.gmk ! make/Hsdis.gmk ! make/Images.gmk ! make/Init.gmk ! make/InitSupport.gmk ! make/InterimImage.gmk ! make/JrtfsJar.gmk ! make/MacBundles.gmk ! make/Main.gmk ! make/MainSupport.gmk ! make/ModuleTools.gmk ! make/ModuleWrapper.gmk ! make/PreInit.gmk ! make/PreInitSupport.gmk ! make/ReleaseFile.gmk ! make/RunTests.gmk ! make/RunTestsPrebuilt.gmk + make/RunTestsPrebuiltFindTests.gmk ! make/SourceRevision.gmk ! make/StaticLibs.gmk ! make/StaticLibsImage.gmk ! make/TestImage.gmk ! make/ToolsHotspot.gmk ! make/ToolsJdk.gmk ! make/ToolsLangtools.gmk ! make/UpdateBuildDocs.gmk ! make/UpdateSleefSource.gmk ! make/UpdateX11Wrappers.gmk ! make/ZipSecurity.gmk ! make/ZipSource.gmk ! make/common/CopyFiles.gmk ! make/common/DebugInfoUtils.gmk ! make/common/Execute.gmk ! make/common/FileUtils.gmk ! make/common/FindTests.gmk ! make/common/JarArchive.gmk ! make/common/JavaCompilation.gmk ! make/common/JdkNativeCompilation.gmk ! make/common/LogUtils.gmk ! make/common/MakeBase.gmk + make/common/MakeFileEnd.gmk + make/common/MakeFileStart.gmk ! make/common/MakeIO.gmk + make/common/MakeIncludeEnd.gmk + make/common/MakeIncludeStart.gmk + make/common/MakeSnippetEnd.gmk + make/common/MakeSnippetStart.gmk ! make/common/Modules.gmk ! make/common/NativeCompilation.gmk ! make/common/ProcessMarkdown.gmk ! make/common/TestFilesCompilation.gmk ! make/common/TextFileProcessing.gmk ! make/common/Utils.gmk ! make/common/ZipArchive.gmk ! make/common/modules/CopyCommon.gmk ! make/common/modules/GendataCommon.gmk ! make/common/modules/GensrcCommon.gmk ! make/common/modules/GensrcModuleInfo.gmk ! make/common/modules/GensrcProperties.gmk ! make/common/modules/LauncherCommon.gmk ! make/common/modules/LibCommon.gmk ! make/common/native/CompileFile.gmk ! make/common/native/DebugSymbols.gmk ! make/common/native/Flags.gmk ! make/common/native/Link.gmk ! make/common/native/LinkMicrosoft.gmk ! make/common/native/Paths.gmk ! make/hotspot/CopyToExplodedJdk.gmk ! make/hotspot/HotspotCommon.gmk ! make/hotspot/gensrc/GenerateSources.gmk ! make/hotspot/gensrc/GensrcAdlc.gmk ! make/hotspot/gensrc/GensrcDtrace.gmk ! make/hotspot/gensrc/GensrcJfr.gmk ! make/hotspot/gensrc/GensrcJvmti.gmk ! make/hotspot/lib/CompileGtest.gmk ! make/hotspot/lib/CompileJvm.gmk ! make/hotspot/lib/CompileLibraries.gmk ! make/hotspot/lib/JvmFeatures.gmk ! make/hotspot/lib/JvmFlags.gmk ! make/hotspot/lib/JvmOverrideFiles.gmk ! make/hotspot/test/GtestImage.gmk ! make/ide/eclipse/CreateWorkspace.gmk ! make/ide/idea/jdk/IdeaGenConfig.gmk ! make/ide/visualstudio/hotspot/CreateVSProject.gmk ! make/ide/vscode/hotspot/CreateVSCodeProject.gmk ! make/ide/xcode/hotspot/CreateXcodeProject.gmk ! make/modules/java.base/Copy.gmk ! make/modules/java.base/Gendata.gmk ! make/modules/java.base/Gensrc.gmk ! make/modules/java.base/Java.gmk ! make/modules/java.base/Launcher.gmk ! make/modules/java.base/Lib.gmk ! make/modules/java.base/gendata/GendataBlockedCerts.gmk ! make/modules/java.base/gendata/GendataBreakIterator.gmk ! make/modules/java.base/gendata/GendataCryptoPolicy.gmk ! make/modules/java.base/gendata/GendataPublicSuffixList.gmk ! make/modules/java.base/gendata/GendataTZDB.gmk ! make/modules/java.base/gensrc/GensrcBuffer.gmk ! make/modules/java.base/gensrc/GensrcCharacterData.gmk ! make/modules/java.base/gensrc/GensrcCharsetCoder.gmk ! make/modules/java.base/gensrc/GensrcCharsetMapping.gmk ! make/modules/java.base/gensrc/GensrcExceptions.gmk ! make/modules/java.base/gensrc/GensrcMisc.gmk ! make/modules/java.base/gensrc/GensrcModuleLoaderMap.gmk ! make/modules/java.base/gensrc/GensrcRegex.gmk ! make/modules/java.base/gensrc/GensrcScopedMemoryAccess.gmk ! make/modules/java.base/gensrc/GensrcVarHandles.gmk ! make/modules/java.base/lib/CoreLibraries.gmk ! make/modules/java.compiler/Java.gmk ! make/modules/java.datatransfer/Java.gmk ! make/modules/java.desktop/Copy.gmk ! make/modules/java.desktop/Gendata.gmk ! make/modules/java.desktop/Gensrc.gmk ! make/modules/java.desktop/Java.gmk ! make/modules/java.desktop/Lib.gmk ! make/modules/java.desktop/gendata/GendataFontConfig.gmk ! make/modules/java.desktop/gendata/GendataHtml32dtd.gmk ! make/modules/java.desktop/gensrc/GensrcIcons.gmk ! make/modules/java.desktop/gensrc/GensrcSwing.gmk ! make/modules/java.desktop/gensrc/GensrcX11Wrappers.gmk ! make/modules/java.desktop/lib/AwtLibraries.gmk ! make/modules/java.desktop/lib/ClientLibraries.gmk ! make/modules/java.instrument/Java.gmk ! make/modules/java.instrument/Lib.gmk ! make/modules/java.logging/Copy.gmk ! make/modules/java.logging/Gensrc.gmk ! make/modules/java.logging/Java.gmk ! make/modules/java.management.rmi/Java.gmk ! make/modules/java.management/Java.gmk ! make/modules/java.management/Lib.gmk ! make/modules/java.naming/Java.gmk ! make/modules/java.prefs/Java.gmk ! make/modules/java.prefs/Lib.gmk ! make/modules/java.rmi/Java.gmk ! make/modules/java.rmi/Launcher.gmk ! make/modules/java.rmi/Lib.gmk ! make/modules/java.scripting/Java.gmk ! make/modules/java.scripting/Launcher.gmk ! make/modules/java.security.jgss/Java.gmk ! make/modules/java.security.jgss/Launcher.gmk ! make/modules/java.security.jgss/Lib.gmk ! make/modules/java.security.sasl/Java.gmk ! make/modules/java.smartcardio/Java.gmk ! make/modules/java.smartcardio/Lib.gmk ! make/modules/java.sql.rowset/Java.gmk ! make/modules/java.sql/Java.gmk ! make/modules/java.transaction.xa/Java.gmk ! make/modules/java.xml.crypto/Java.gmk ! make/modules/java.xml/Copy.gmk ! make/modules/java.xml/Java.gmk ! make/modules/jdk.accessibility/Copy.gmk ! make/modules/jdk.accessibility/Java.gmk ! make/modules/jdk.accessibility/Launcher.gmk ! make/modules/jdk.accessibility/Lib.gmk ! make/modules/jdk.attach/Lib.gmk ! make/modules/jdk.charsets/Gensrc.gmk ! make/modules/jdk.charsets/Java.gmk ! make/modules/jdk.compiler/Gendata.gmk ! make/modules/jdk.compiler/Gensrc.gmk ! make/modules/jdk.compiler/Java.gmk ! make/modules/jdk.compiler/Launcher.gmk ! make/modules/jdk.crypto.cryptoki/Java.gmk ! make/modules/jdk.crypto.cryptoki/Lib.gmk ! make/modules/jdk.crypto.mscapi/Java.gmk ! make/modules/jdk.crypto.mscapi/Lib.gmk ! make/modules/jdk.dev/Java.gmk ! make/modules/jdk.dynalink/Java.gmk ! make/modules/jdk.editpad/Java.gmk ! make/modules/jdk.hotspot.agent/Gensrc.gmk ! make/modules/jdk.hotspot.agent/Java.gmk ! make/modules/jdk.hotspot.agent/Launcher.gmk ! make/modules/jdk.hotspot.agent/Lib.gmk ! make/modules/jdk.httpserver/Gensrc.gmk ! make/modules/jdk.httpserver/Java.gmk ! make/modules/jdk.httpserver/Jmod.gmk ! make/modules/jdk.httpserver/Launcher.gmk ! make/modules/jdk.incubator.vector/Java.gmk ! make/modules/jdk.incubator.vector/Lib.gmk ! make/modules/jdk.internal.jvmstat/Java.gmk ! make/modules/jdk.internal.le/Java.gmk ! make/modules/jdk.internal.md/Java.gmk ! make/modules/jdk.internal.opt/Java.gmk ! make/modules/jdk.internal.vm.ci/Java.gmk ! make/modules/jdk.jartool/Gensrc.gmk ! make/modules/jdk.jartool/Java.gmk ! make/modules/jdk.jartool/Jmod.gmk ! make/modules/jdk.jartool/Launcher.gmk ! make/modules/jdk.javadoc/Copy.gmk ! make/modules/jdk.javadoc/Gendata.gmk ! make/modules/jdk.javadoc/Gensrc.gmk ! make/modules/jdk.javadoc/Java.gmk ! make/modules/jdk.javadoc/Launcher.gmk ! make/modules/jdk.jcmd/Java.gmk ! make/modules/jdk.jcmd/Launcher.gmk ! make/modules/jdk.jconsole/Java.gmk ! make/modules/jdk.jconsole/Launcher.gmk ! make/modules/jdk.jdeps/Gensrc.gmk ! make/modules/jdk.jdeps/Java.gmk ! make/modules/jdk.jdeps/Launcher.gmk ! make/modules/jdk.jdi/Gensrc.gmk ! make/modules/jdk.jdi/Java.gmk ! make/modules/jdk.jdi/Launcher.gmk ! make/modules/jdk.jdi/Lib.gmk ! make/modules/jdk.jdwp.agent/Copy.gmk ! make/modules/jdk.jdwp.agent/Lib.gmk ! make/modules/jdk.jfr/Copy.gmk ! make/modules/jdk.jfr/Gendata.gmk ! make/modules/jdk.jfr/Java.gmk ! make/modules/jdk.jfr/Jmod.gmk ! make/modules/jdk.jfr/Launcher.gmk ! make/modules/jdk.jlink/Gensrc.gmk ! make/modules/jdk.jlink/Launcher.gmk ! make/modules/jdk.jpackage/Gensrc.gmk ! make/modules/jdk.jpackage/Java.gmk ! make/modules/jdk.jpackage/Jmod.gmk ! make/modules/jdk.jpackage/Launcher.gmk ! make/modules/jdk.jpackage/Lib.gmk ! make/modules/jdk.jshell/Gensrc.gmk ! make/modules/jdk.jshell/Java.gmk ! make/modules/jdk.jshell/Jmod.gmk ! make/modules/jdk.jshell/Launcher.gmk ! make/modules/jdk.jstatd/Jmod.gmk ! make/modules/jdk.jstatd/Launcher.gmk ! make/modules/jdk.localedata/Gensrc.gmk ! make/modules/jdk.localedata/Java.gmk ! make/modules/jdk.management.agent/Copy.gmk ! make/modules/jdk.management.agent/Gensrc.gmk ! make/modules/jdk.management.agent/Lib.gmk ! make/modules/jdk.management/Java.gmk ! make/modules/jdk.management/Lib.gmk ! make/modules/jdk.net/Lib.gmk ! make/modules/jdk.sctp/Java.gmk ! make/modules/jdk.sctp/Lib.gmk ! make/modules/jdk.security.auth/Java.gmk ! make/modules/jdk.security.auth/Lib.gmk ! make/modules/sun.charsets/Java.gmk ! make/test/BuildFailureHandler.gmk ! make/test/BuildJtregTestThreadFactory.gmk ! make/test/BuildMicrobenchmark.gmk ! make/test/BuildTestLib.gmk ! make/test/BuildTestLibNative.gmk ! make/test/JtregNativeHotspot.gmk ! make/test/JtregNativeJdk.gmk ! make/test/JtregNativeLibTest.gmk ! test/make/TestCompileCommands.gmk ! test/make/TestCopyFiles.gmk ! test/make/TestFixDepsFile.gmk ! test/make/TestIdea.gmk ! test/make/TestJavaCompilation.gmk ! test/make/TestMake.gmk ! test/make/TestMakeBase.gmk ! test/make/UtilsForTests.gmk Changeset: 5ee44c16 Branch: premain Author: Daniel Fuchs Date: 2025-02-11 12:10:05 +0000 URL: https://git.openjdk.org/leyden/commit/5ee44c1688fa6bfbf31d506696eefbf61de0e768 8349662: SSLTube SSLSubscriptionWrapper has potential races when switching subscriptions Reviewed-by: jpai ! src/java.net.http/share/classes/jdk/internal/net/http/common/SSLTube.java ! test/jdk/java/net/httpclient/CookieHeaderTest.java ! test/jdk/java/net/httpclient/DigestEchoClient.java Changeset: 545d19f1 Branch: premain Author: SendaoYan Date: 2025-02-11 12:38:19 +0000 URL: https://git.openjdk.org/leyden/commit/545d19f1fa102d35908528520dc19a7d16000d63 8349771: Replace usages of -mx and -ms in some monitor tests Reviewed-by: jpai, stefank, dholmes ! test/hotspot/jtreg/runtime/Monitor/StressWrapper_TestRecursiveLocking_36M.java ! test/hotspot/jtreg/runtime/Monitor/TestRecursiveLocking.java Changeset: ee079fdb Branch: premain Author: Tobias Hartmann Date: 2025-02-11 13:57:45 +0000 URL: https://git.openjdk.org/leyden/commit/ee079fdbf1c513a4c57ef86a803eb0add651c539 8349820: Temporarily increase MemLimit for tests until JDK-8349772 and JDK-8337821 are fixed Reviewed-by: rcastanedalo, epeter ! test/hotspot/jtreg/vmTestbase/jit/t/t105/t105.java ! test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/compiler/i2c_c2i/Test.java Changeset: a1bcda24 Branch: premain Author: Mohamed Issa Committer: Sandhya Viswanathan Date: 2025-02-11 15:33:30 +0000 URL: https://git.openjdk.org/leyden/commit/a1bcda247617a839cd797bdd8bd3bf3216dff8a8 8349579: jsvml.dll incorrect RDATA SEGMENT specification Reviewed-by: sviswanathan, jbhateja ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_acos_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_asin_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_atan2_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_atan_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_cbrt_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_cos_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_cosh_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_exp_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_expm1_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_hypot_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_log10_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_log1p_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_log_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_pow_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_sin_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_sinh_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_tan_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_d_tanh_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_acos_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_asin_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_atan2_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_atan_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_cbrt_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_cos_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_cosh_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_exp_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_expm1_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_hypot_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_log10_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_log1p_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_log_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_pow_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_sin_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_sinh_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_tan_windows_x86.S ! src/jdk.incubator.vector/windows/native/libjsvml/jsvml_s_tanh_windows_x86.S Changeset: 32dc41c9 Branch: premain Author: Chen Liang Date: 2025-02-11 16:21:23 +0000 URL: https://git.openjdk.org/leyden/commit/32dc41c9f782d0c8829e1ef29846d236b3cf0fe2 8349624: Validation for slot missing in CodeBuilder local variable instructions Reviewed-by: asotona ! src/java.base/share/classes/jdk/internal/classfile/impl/DirectCodeBuilder.java ! test/jdk/jdk/classfile/InstructionValidationTest.java Changeset: 64281653 Branch: premain Author: Naoto Sato Date: 2025-02-11 17:20:50 +0000 URL: https://git.openjdk.org/leyden/commit/642816538fbaa5b74c6beb8a14d1738cdde28c10 8349254: Disable "best-fit" mapping on Windows environment variables Reviewed-by: jlu, jpai ! src/java.base/share/native/libjli/args.c ! src/java.base/windows/native/libjava/ProcessEnvironment_md.c ! test/jdk/tools/launcher/DisableBestFitMappingTest.java Changeset: e7157d17 Branch: premain Author: Alexey Semenyuk Date: 2025-02-11 19:22:35 +0000 URL: https://git.openjdk.org/leyden/commit/e7157d174c19a3562c4bf19760760cb1de13cb0e 8150442: Enforce Supported Platforms in Packager for MSI bundles Reviewed-by: almatvee, cstein ! make/modules/jdk.jpackage/Java.gmk ! src/jdk.jpackage/share/man/jpackage.md + src/jdk.jpackage/windows/classes/jdk/jpackage/internal/OSVersionCondition.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WinMsiBundler.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WixFragmentBuilder.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/MsiInstallerStrings_de.wxl ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/MsiInstallerStrings_en.wxl ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/MsiInstallerStrings_ja.wxl ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/MsiInstallerStrings_zh_CN.wxl ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/main.wxs + src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/os-condition.wxf ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/wix3-to-wix4-conv.xsl + test/jdk/tools/jpackage/junit/windows/jdk.jpackage/jdk/jpackage/internal/ExecutableOSVersionTest.java + test/jdk/tools/jpackage/junit/windows/junit.java Changeset: 8c09d40d Branch: premain Author: William Kemper Date: 2025-02-11 20:20:53 +0000 URL: https://git.openjdk.org/leyden/commit/8c09d40d6c345fda9fc7b358a53cae3b5965580b 8348268: Test gc/shenandoah/TestResizeTLAB.java#compact: fatal error: Before Updating References: Thread C2 CompilerThread1: expected gc-state 9, actual 21 Reviewed-by: shade ! src/hotspot/share/gc/shenandoah/shenandoahBarrierSet.cpp ! src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp Changeset: d558d9d4 Branch: premain Author: Volkan Yazici Committer: Jaikiran Pai Date: 2025-02-12 01:58:22 +0000 URL: https://git.openjdk.org/leyden/commit/d558d9d4274ecfd2df4d3ef38bae00ebab6ea325 8349702: jdk.internal.net.http.Http2Connection::putStream needs to provide cause while cancelling stream Reviewed-by: jpai, dfuchs ! src/java.net.http/share/classes/jdk/internal/net/http/Http2Connection.java ! test/jdk/java/net/httpclient/AsyncExecutorShutdown.java Changeset: 88b4a906 Branch: premain Author: SendaoYan Date: 2025-02-12 03:00:43 +0000 URL: https://git.openjdk.org/leyden/commit/88b4a906d2c520ce6a7b21adc5e709067e520cdd 8349689: Several virtual thread tests missing /native keyword Reviewed-by: alanb, lmesnik ! test/jdk/java/lang/Thread/virtual/JfrEvents.java ! test/jdk/java/lang/Thread/virtual/MonitorEnterExit.java ! test/jdk/java/lang/Thread/virtual/MonitorWaitNotify.java ! test/jdk/java/lang/Thread/virtual/RetryMonitorEnterWhenPinned.java ! test/jdk/java/lang/Thread/virtual/Starvation.java ! test/jdk/java/lang/Thread/virtual/SynchronizedNative.java ! test/jdk/java/lang/Thread/virtual/ThreadAPI.java ! test/jdk/java/lang/Thread/virtual/ThreadPollOnYield.java ! test/jdk/java/lang/Thread/virtual/stress/GetStackTraceALotWhenPinned.java ! test/jdk/java/lang/Thread/virtual/stress/PinALot.java ! test/jdk/java/lang/management/ThreadMXBean/VirtualThreads.java ! test/jdk/java/nio/channels/vthread/SelectorOps.java Changeset: 342dec93 Branch: premain Author: Prasanta Sadhukhan Date: 2025-02-12 03:10:00 +0000 URL: https://git.openjdk.org/leyden/commit/342dec93f22193309aa8865df95eb19d659b082c 8347019: Test javax/swing/JRadioButton/8033699/bug8033699.java still fails: Focus is not on Radio Button Single as Expected Reviewed-by: aivanov, dnguyen, azvegint ! test/jdk/javax/swing/JRadioButton/8033699/bug8033699.java Changeset: adda12b7 Branch: premain Author: David Holmes Date: 2025-02-12 03:57:30 +0000 URL: https://git.openjdk.org/leyden/commit/adda12b724ec5fb890ef18ae21f0b5985ececfea 8349874: Missing comma in copyright from JDK-8349689 Reviewed-by: dcubed, mikael ! test/jdk/java/lang/Thread/virtual/Starvation.java Changeset: bb41df44 Branch: premain Author: Kevin Walls Date: 2025-02-12 08:22:29 +0000 URL: https://git.openjdk.org/leyden/commit/bb41df44d95cb4cadb8a18b3f999d35e169b35d3 8349723: Problemlist jdp tests for macosx-x64 Reviewed-by: rriggs, sspitsyn ! test/jdk/ProblemList.txt Changeset: 08f4c1c8 Branch: premain Author: Daniel Jeli?ski Date: 2025-02-12 09:04:32 +0000 URL: https://git.openjdk.org/leyden/commit/08f4c1c801c8c3553c1380e1d019a487bd0a25ea 8349781: make test TEST=gtest fails on WSL Reviewed-by: erikj ! make/RunTests.gmk Changeset: e700460b Branch: premain Author: Volkan Yazici Committer: Daniel Fuchs Date: 2025-02-12 12:04:22 +0000 URL: https://git.openjdk.org/leyden/commit/e700460b490e2b6649a61dc48e7d971b8efdb8c4 8349813: Test behavior of limiting() on RS operators throwing exceptions Reviewed-by: dfuchs ! test/jdk/java/net/httpclient/AbstractThrowingSubscribers.java + test/jdk/java/net/httpclient/ThrowingSubscribersAsLimiting.java + test/jdk/java/net/httpclient/ThrowingSubscribersAsLimitingAsync.java Changeset: ed17c55e Branch: premain Author: Coleen Phillimore Date: 2025-02-12 12:04:40 +0000 URL: https://git.openjdk.org/leyden/commit/ed17c55ea34b3b6009dab11d64f21e0b7af3d701 8349145: Make Class.getProtectionDomain() non-native Reviewed-by: liach, dholmes, yzheng ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/prims/jvm.cpp ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/System.java ! src/java.base/share/classes/jdk/internal/reflect/Reflection.java ! src/java.base/share/native/libjava/Class.c ! test/hotspot/gtest/oops/test_instanceKlass.cpp ! test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaType.java ! test/jdk/java/lang/reflect/AccessibleObject/ModuleSetAccessibleTest.java ! test/jdk/java/lang/reflect/AccessibleObject/TrySetAccessibleTest.java ! test/jdk/jdk/internal/reflect/Reflection/Filtering.java Changeset: 73e1780a Branch: premain Author: Thomas Schatzl Date: 2025-02-12 16:11:09 +0000 URL: https://git.openjdk.org/leyden/commit/73e1780ad0aba92ce60bb35fc66a395abccbf57e 8349836: G1: Improve group prediction log message Reviewed-by: ayang, iwalulya ! src/hotspot/share/gc/g1/g1CollectionSetCandidates.cpp Changeset: 332d87cc Branch: premain Author: Jiangli Zhou Date: 2025-02-12 16:29:08 +0000 URL: https://git.openjdk.org/leyden/commit/332d87cc7e19d55ddb98a43a6eb3a77f3518ecfd 8349859: Support static JDK in libfontmanager/freetypeScaler.c Reviewed-by: prr ! make/modules/java.desktop/lib/ClientLibraries.gmk ! src/java.desktop/share/native/libfontmanager/freetypeScaler.c Changeset: 4b463ee7 Branch: premain Author: Jatin Bhateja Date: 2025-02-12 17:02:51 +0000 URL: https://git.openjdk.org/leyden/commit/4b463ee70eceb94fdfbffa5c49dd58dcc6a6c890 8342103: C2 compiler support for Float16 type and associated scalar operations Co-authored-by: Paul Sandoz Co-authored-by: Bhavana Kilambi Co-authored-by: Joe Darcy Co-authored-by: Raffaello Giulietti Reviewed-by: psandoz, epeter, sviswanathan ! src/hotspot/cpu/x86/assembler_x86.cpp ! src/hotspot/cpu/x86/assembler_x86.hpp ! src/hotspot/cpu/x86/c2_MacroAssembler_x86.cpp ! src/hotspot/cpu/x86/c2_MacroAssembler_x86.hpp ! src/hotspot/cpu/x86/vm_version_x86.cpp ! src/hotspot/cpu/x86/vm_version_x86.hpp ! src/hotspot/cpu/x86/x86.ad ! src/hotspot/cpu/x86/x86_64.ad ! src/hotspot/share/adlc/archDesc.cpp ! src/hotspot/share/adlc/forms.cpp ! src/hotspot/share/adlc/forms.hpp ! src/hotspot/share/adlc/formssel.cpp ! src/hotspot/share/adlc/output_c.cpp ! src/hotspot/share/adlc/output_h.cpp ! src/hotspot/share/classfile/vmIntrinsics.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/opto/addnode.cpp ! src/hotspot/share/opto/addnode.hpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/castnode.cpp ! src/hotspot/share/opto/castnode.hpp ! src/hotspot/share/opto/classes.hpp ! src/hotspot/share/opto/connode.cpp ! src/hotspot/share/opto/connode.hpp ! src/hotspot/share/opto/constantTable.cpp ! src/hotspot/share/opto/convertnode.cpp ! src/hotspot/share/opto/convertnode.hpp ! src/hotspot/share/opto/divnode.cpp ! src/hotspot/share/opto/divnode.hpp ! src/hotspot/share/opto/escape.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/library_call.hpp ! src/hotspot/share/opto/machnode.cpp ! src/hotspot/share/opto/machnode.hpp ! src/hotspot/share/opto/matcher.cpp ! src/hotspot/share/opto/mulnode.cpp ! src/hotspot/share/opto/mulnode.hpp ! src/hotspot/share/opto/node.cpp ! src/hotspot/share/opto/node.hpp ! src/hotspot/share/opto/subnode.cpp ! src/hotspot/share/opto/subnode.hpp ! src/hotspot/share/opto/superword.cpp ! src/hotspot/share/opto/type.cpp ! src/hotspot/share/opto/type.hpp ! src/hotspot/share/utilities/globalDefinitions.hpp + src/java.base/share/classes/jdk/internal/vm/vector/Float16Math.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/Float16.java ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/amd64/AMD64.java + test/hotspot/jtreg/compiler/c2/irTests/ConvF2HFIdealizationTests.java + test/hotspot/jtreg/compiler/c2/irTests/MulHFNodeIdealizationTests.java + test/hotspot/jtreg/compiler/c2/irTests/TestFloat16ScalarOperations.java ! test/hotspot/jtreg/compiler/lib/ir_framework/IRNode.java ! test/hotspot/jtreg/compiler/lib/ir_framework/test/IREncodingPrinter.java ! test/hotspot/jtreg/compiler/vectorization/TestFloat16VectorConvChain.java + test/jdk/jdk/incubator/vector/ScalarFloat16OperationsTest.java + test/micro/org/openjdk/bench/jdk/incubator/vector/Float16OperationsBenchmark.java Changeset: 336d0d85 Branch: premain Author: Vladimir Kozlov Date: 2025-02-12 18:26:37 +0000 URL: https://git.openjdk.org/leyden/commit/336d0d8592aed734e7b8139e1ecd71d33825c75a 8349926: [BACKOUT] Support static JDK in libfontmanager/freetypeScaler.c Reviewed-by: jiangli, shade ! make/modules/java.desktop/lib/ClientLibraries.gmk ! src/java.desktop/share/native/libfontmanager/freetypeScaler.c Changeset: c5ac3c4f Branch: premain Author: Fernando Guallini Committer: Rajan Halade Date: 2025-02-12 18:36:24 +0000 URL: https://git.openjdk.org/leyden/commit/c5ac3c4f11e777b24d597deec522c9df09750f59 8249831: Test sun/security/mscapi/nonUniqueAliases/NonUniqueAliases.java is marked with @ignore Reviewed-by: hchao, rhalade ! test/jdk/sun/security/mscapi/nonUniqueAliases/NonUniqueAliases.java Changeset: ba281196 Branch: premain Author: Archie Cobbs Date: 2025-02-12 19:17:29 +0000 URL: https://git.openjdk.org/leyden/commit/ba28119642a7cfa850707a01ce8e589c3a80d416 8348427: DeferredLintHandler API should use JCTree instead of DiagnosticPosition Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/code/DeferredLintHandler.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Annotate.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Enter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/MemberEnter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Modules.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/TypeEnter.java ! src/jdk.compiler/share/classes/com/sun/tools/javac/parser/JavacParser.java Changeset: 74e458ba Branch: premain Author: Chris Plummer Date: 2025-02-12 19:27:54 +0000 URL: https://git.openjdk.org/leyden/commit/74e458bad6ba6e8aa85e0950119963a6f6cb2c03 8349684: Remove SA core file tests from problem list for macosx-x64 Reviewed-by: kevinw, sspitsyn ! test/hotspot/jtreg/ProblemList.txt Changeset: 2a5d1da3 Branch: premain Author: Chris Plummer Date: 2025-02-12 19:28:28 +0000 URL: https://git.openjdk.org/leyden/commit/2a5d1da3355a4df3109ec42646b5b0cf088b4c2a 8349571: Remove JavaThreadFactory interface from SA Reviewed-by: kevinw, sspitsyn - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/JavaThreadFactory.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Threads.java Changeset: 7a0832f5 Branch: premain Author: Zhao Song Committer: Erik Joelsson Date: 2025-02-12 21:36:45 +0000 URL: https://git.openjdk.org/leyden/commit/7a0832f5487cb7586131f6c4e0b90300f6de5dec 8349934: Wrong file regex for copyright header format check in .jcheck/conf Reviewed-by: erikj ! .jcheck/conf Changeset: b8576eb4 Branch: premain Author: Daniel Gredler Committer: Phil Race Date: 2025-02-12 22:15:37 +0000 URL: https://git.openjdk.org/leyden/commit/b8576eb48e6aae96f9bad1caeedaeb4b5b675e34 6562489: Font-Renderer should ignore invisible characters \u2062 and \u2063 Reviewed-by: avu, prr ! test/jdk/java/awt/font/TextLayout/FormatCharAdvanceTest.java Changeset: 55097dd4 Branch: premain Author: Volodymyr Paprotski Date: 2025-02-12 22:25:05 +0000 URL: https://git.openjdk.org/leyden/commit/55097dd4cbb5d691c12cb0247d66dce593759d59 8344802: Crash in StubRoutines::verify_mxcsr with -XX:+EnableX86ECoreOpts and -Xcheck:jni Reviewed-by: jwaters, kvn, sviswanathan ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.hpp ! src/hotspot/cpu/x86/stubGenerator_x86_32.cpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/cpu/x86/upcallLinker_x86_64.cpp ! src/hotspot/os/windows/os_windows.cpp ! src/hotspot/os_cpu/windows_x86/os_windows_x86.cpp ! test/jdk/java/lang/String/IndexOf.java ! test/jdk/java/lang/StringBuffer/ECoreIndexOf.java Changeset: adc3f53d Branch: premain Author: SendaoYan Date: 2025-02-13 02:59:57 +0000 URL: https://git.openjdk.org/leyden/commit/adc3f53d2403cd414a91e71c079b4108b2346da0 8349787: java/lang/Thread/virtual/ThreadPollOnYield.java#default passes unexpectedly without libVThreadPinner.so Reviewed-by: alanb ! test/jdk/java/lang/Thread/virtual/ThreadPollOnYield.java Changeset: a637ccf2 Branch: premain Author: Robbin Ehn Date: 2025-02-13 06:36:32 +0000 URL: https://git.openjdk.org/leyden/commit/a637ccf2fead25ea6a06ad6bd65e92b8694ee11c 8349851: RISC-V: Call VM leaf can use movptr2 Reviewed-by: fyang, mli ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp Changeset: 24b7f815 Branch: premain Author: Ivan Walulya Date: 2025-02-13 09:47:02 +0000 URL: https://git.openjdk.org/leyden/commit/24b7f815ae4ca2a228dff2694993b5ebc2192382 8349783: g1RemSetSummary.cpp:344:68: runtime error: member call on null pointer of type 'struct G1HeapRegion' Reviewed-by: tschatzl, ayang ! src/hotspot/share/gc/g1/g1RemSetSummary.cpp Changeset: 29202d1f Branch: premain Author: Christoph Langer Date: 2025-02-13 10:03:25 +0000 URL: https://git.openjdk.org/leyden/commit/29202d1fa7fc35796a5d2c9425eeb3e12f8c027a 8349648: Test tools/jpackage/share/JLinkOptionsTest.java fails with --enable-linkable-runtime set after JDK-8346434 Reviewed-by: sgehwolf, asemenyuk ! test/jdk/tools/jpackage/share/JLinkOptionsTest.java Changeset: efc597bf Branch: premain Author: Alexey Semenyuk Date: 2025-02-13 10:22:19 +0000 URL: https://git.openjdk.org/leyden/commit/efc597bf47bff46596bb29b03b5750bfc5afe851 8349564: Clean warnings found in jpackage tests when building them with -Xlint:all Reviewed-by: almatvee ! test/jdk/tools/jpackage/apps/ChildProcessAppLauncher.java ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/AnnotationsTest.java ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/DirectoryContentVerifierTest.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/AdditionalLauncher.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Comm.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/CommandArguments.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Executor.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Functional.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/HelloApp.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/LauncherIconVerifier.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/LinuxHelper.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/MacHelper.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/MethodCall.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/PackageTest.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/PackageType.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TKit.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestBuilder.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestInstance.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestMethodSupplier.java ! test/jdk/tools/jpackage/linux/LinuxResourceTest.java ! test/jdk/tools/jpackage/linux/LinuxWeirdOutputDirTest.java ! test/jdk/tools/jpackage/linux/PackageDepsTest.java ! test/jdk/tools/jpackage/linux/ServiceAndDesktopTest.java ! test/jdk/tools/jpackage/linux/ShortcutHintTest.java ! test/jdk/tools/jpackage/linux/UpgradeTest.java ! test/jdk/tools/jpackage/linux/UsrTreeTest.java ! test/jdk/tools/jpackage/macosx/ArgumentsFilteringTest.java ! test/jdk/tools/jpackage/macosx/DmgContentTest.java ! test/jdk/tools/jpackage/macosx/HostArchPkgTest.java ! test/jdk/tools/jpackage/macosx/MacPropertiesTest.java ! test/jdk/tools/jpackage/macosx/NameWithSpaceTest.java ! test/jdk/tools/jpackage/macosx/SigningOptionsTest.java ! test/jdk/tools/jpackage/macosx/base/SigningBase.java ! test/jdk/tools/jpackage/macosx/base/SigningCheck.java ! test/jdk/tools/jpackage/share/AddLShortcutTest.java ! test/jdk/tools/jpackage/share/AddLauncherTest.java ! test/jdk/tools/jpackage/share/AppContentTest.java ! test/jdk/tools/jpackage/share/AppImagePackageTest.java ! test/jdk/tools/jpackage/share/AppVersionTest.java ! test/jdk/tools/jpackage/share/ArgumentsTest.java ! test/jdk/tools/jpackage/share/BasicTest.java ! test/jdk/tools/jpackage/share/CookedRuntimeTest.java ! test/jdk/tools/jpackage/share/DotInNameTest.java ! test/jdk/tools/jpackage/share/ErrorTest.java ! test/jdk/tools/jpackage/share/FileAssociationsTest.java ! test/jdk/tools/jpackage/share/IconTest.java ! test/jdk/tools/jpackage/share/InOutPathTest.java ! test/jdk/tools/jpackage/share/InstallDirTest.java ! test/jdk/tools/jpackage/share/JLinkOptionsTest.java ! test/jdk/tools/jpackage/share/JavaOptionsEqualsTest.java ! test/jdk/tools/jpackage/share/JavaOptionsTest.java ! test/jdk/tools/jpackage/share/LicenseTest.java ! test/jdk/tools/jpackage/share/MainClassTest.java ! test/jdk/tools/jpackage/share/ModulePathTest.java ! test/jdk/tools/jpackage/share/ModulePathTest2.java ! test/jdk/tools/jpackage/share/ModulePathTest3.java ! test/jdk/tools/jpackage/share/MultiLauncherTwoPhaseTest.java ! test/jdk/tools/jpackage/share/MultiNameTwoPhaseTest.java ! test/jdk/tools/jpackage/share/MultipleJarAppTest.java ! test/jdk/tools/jpackage/share/NoMPathRuntimeTest.java ! test/jdk/tools/jpackage/share/NonExistentTest.java ! test/jdk/tools/jpackage/share/PerUserCfgTest.java ! test/jdk/tools/jpackage/share/PredefinedAppImageErrorTest.java ! test/jdk/tools/jpackage/share/RuntimeImageSymbolicLinksTest.java ! test/jdk/tools/jpackage/share/RuntimeImageTest.java ! test/jdk/tools/jpackage/share/RuntimePackageTest.java ! test/jdk/tools/jpackage/share/ServiceTest.java ! test/jdk/tools/jpackage/share/SimplePackageTest.java ! test/jdk/tools/jpackage/share/UnicodeArgsTest.java ! test/jdk/tools/jpackage/share/VendorTest.java ! test/jdk/tools/jpackage/windows/Win8282351Test.java ! test/jdk/tools/jpackage/windows/WinConsoleTest.java ! test/jdk/tools/jpackage/windows/WinInstallerIconTest.java ! test/jdk/tools/jpackage/windows/WinL10nTest.java ! test/jdk/tools/jpackage/windows/WinLongPathTest.java ! test/jdk/tools/jpackage/windows/WinLongVersionTest.java ! test/jdk/tools/jpackage/windows/WinMenuGroupTest.java ! test/jdk/tools/jpackage/windows/WinMenuTest.java ! test/jdk/tools/jpackage/windows/WinPerUserInstallTest.java ! test/jdk/tools/jpackage/windows/WinResourceTest.java ! test/jdk/tools/jpackage/windows/WinScriptTest.java ! test/jdk/tools/jpackage/windows/WinShortcutTest.java ! test/jdk/tools/jpackage/windows/WinUpgradeUUIDTest.java Changeset: add3cd1c Branch: premain Author: Alexander Zvegintsev Date: 2025-02-13 11:42:46 +0000 URL: https://git.openjdk.org/leyden/commit/add3cd1ca470be8fd5e5e1930d7f789318eb8e6d 8348600: Update PipeWire to 1.3.81 Reviewed-by: psadhukhan, prr, honkar ! src/java.desktop/unix/legal/pipewire.md ! src/java.desktop/unix/native/libpipewire/include/pipewire/context.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/core.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/keys.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/loop.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/port.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/properties.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/protocol.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/proxy.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/stream.h + src/java.desktop/unix/native/libpipewire/include/pipewire/type.h ! src/java.desktop/unix/native/libpipewire/include/pipewire/utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/buffer/buffer.h ! src/java.desktop/unix/native/libpipewire/include/spa/buffer/meta.h ! src/java.desktop/unix/native/libpipewire/include/spa/buffer/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/control/control.h ! src/java.desktop/unix/native/libpipewire/include/spa/control/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/debug/types.h ! src/java.desktop/unix/native/libpipewire/include/spa/node/io.h ! src/java.desktop/unix/native/libpipewire/include/spa/node/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/aac-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/aac.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/amr-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/amr.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/iec958-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/mp3-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/mp3.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/raw-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/raw.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/wma-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/audio/wma.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/bluetooth/audio.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/bluetooth/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/buffers-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/buffers.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/format-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/format.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/latency.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/param-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/param.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/profiler-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/profiler.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/props-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/props.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/route-types.h + src/java.desktop/unix/native/libpipewire/include/spa/param/tag-types.h + src/java.desktop/unix/native/libpipewire/include/spa/param/tag.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/dsp-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/format-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/h264-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/mjpg-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/multiview.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/raw-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/raw-utils.h ! src/java.desktop/unix/native/libpipewire/include/spa/param/video/raw.h ! src/java.desktop/unix/native/libpipewire/include/spa/pod/builder.h ! src/java.desktop/unix/native/libpipewire/include/spa/pod/event.h ! src/java.desktop/unix/native/libpipewire/include/spa/pod/iter.h ! src/java.desktop/unix/native/libpipewire/include/spa/pod/parser.h ! src/java.desktop/unix/native/libpipewire/include/spa/support/loop.h ! src/java.desktop/unix/native/libpipewire/include/spa/support/system.h + src/java.desktop/unix/native/libpipewire/include/spa/utils/cleanup.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/defs.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/dict.h + src/java.desktop/unix/native/libpipewire/include/spa/utils/endian.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/enum-types.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/hook.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/list.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/string.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/type-info.h ! src/java.desktop/unix/native/libpipewire/include/spa/utils/type.h Changeset: 5b75ff72 Branch: premain Author: Jaikiran Pai Date: 2025-02-13 11:54:01 +0000 URL: https://git.openjdk.org/leyden/commit/5b75ff7283340291bc87f83aba0e4416479899e3 8349907: jdk.tools.jlink.internal.plugins.ZipPlugin does not close the Deflater in exceptional cases Reviewed-by: liach, alanb, sundar, lancea ! src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ZipPlugin.java Changeset: c2fc9478 Branch: premain Author: Matthias Baesken Date: 2025-02-13 14:16:23 +0000 URL: https://git.openjdk.org/leyden/commit/c2fc94782669ae1645014ee3bfeba957dbff4669 8349378: Build splashscreen lib with SIZE optimization Reviewed-by: erikj, prr, honkar ! make/modules/java.desktop/lib/ClientLibraries.gmk Changeset: 18958c62 Branch: premain Author: Jiangli Zhou Date: 2025-02-13 15:44:46 +0000 URL: https://git.openjdk.org/leyden/commit/18958c6298bf5cc5495375e2940b640b04ec9ccb 8349925: [REDO] Support static JDK in libfontmanager/freetypeScaler.c Reviewed-by: prr ! make/modules/java.desktop/lib/ClientLibraries.gmk ! src/java.desktop/share/native/libfontmanager/freetypeScaler.c Changeset: 0b50e479 Branch: premain Author: Vladimir Kozlov Date: 2025-02-13 16:09:04 +0000 URL: https://git.openjdk.org/leyden/commit/0b50e479a060cf745a3e858d535516444fe80fd8 8349753: Incorrect use of CodeBlob::is_buffer_blob() in few places Reviewed-by: dlong, shade ! src/hotspot/share/code/codeBlob.cpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/prims/jvmtiCodeBlobEvents.cpp ! test/hotspot/jtreg/compiler/codecache/CheckCodeCacheInfo.java Changeset: 28e744dc Branch: premain Author: William Kemper Date: 2025-02-13 16:34:37 +0000 URL: https://git.openjdk.org/leyden/commit/28e744dc642db8ebe376403f28630438a5ee3f44 8348092: Shenandoah: assert(nk >= _lowest_valid_narrow_klass_id && nk <= _highest_valid_narrow_klass_id) failed: narrowKlass ID out of range (3131947710) Reviewed-by: shade ! src/hotspot/share/gc/shenandoah/shenandoahConcurrentGC.cpp Changeset: 6ddbcc34 Branch: premain Author: Martin Balao Date: 2025-02-13 16:55:33 +0000 URL: https://git.openjdk.org/leyden/commit/6ddbcc34c019d780fc12d8f636e3aa3de33ecaaa 8328119: Support HKDF in SunPKCS11 (Preview) 8346720: Support Generic keys in SunPKCS11 SecretKeyFactory Co-authored-by: Francisco Ferrari Bihurriet Co-authored-by: Martin Balao Reviewed-by: valeriep, kdriver, weijun ! src/java.base/share/classes/module-info.java ! src/jdk.crypto.cryptoki/share/classes/module-info.java + src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11HKDF.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11Key.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11Mac.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11SecretKeyFactory.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/SunPKCS11.java + src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/CK_HKDF_PARAMS.java + src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/CK_KEY_DERIVATION_STRING_DATA.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/CK_MECHANISM.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/Functions.java ! src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/PKCS11Constants.java ! src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_convert.c ! src/jdk.crypto.cryptoki/share/native/libj2pkcs11/p11_util.c ! src/jdk.crypto.cryptoki/share/native/libj2pkcs11/pkcs11wrapper.h + test/jdk/sun/security/pkcs11/KDF/TestHKDF.java Changeset: 2eac490b Branch: premain Author: Jiangli Zhou Date: 2025-02-13 19:08:03 +0000 URL: https://git.openjdk.org/leyden/commit/2eac490bd22f5488a60e59f93ce54d4babf33c23 8349868: Remove unneeded libjava shared library dependency from jtreg test libNewDirectByteBuffer, libDirectIO and libInheritedChannel Reviewed-by: bpb ! make/test/JtregNativeJdk.gmk Changeset: a88e2a58 Branch: premain Author: Doug Simon Date: 2025-02-13 19:35:42 +0000 URL: https://git.openjdk.org/leyden/commit/a88e2a58bf834081db55c2071d072567ea763354 8349977: JVMCIRuntime::_shared_library_javavm_id should be jlong Reviewed-by: yzheng, never ! src/hotspot/share/jvmci/jvmciCompilerToVM.cpp ! src/hotspot/share/jvmci/jvmciRuntime.cpp ! src/hotspot/share/jvmci/jvmciRuntime.hpp Changeset: d8fcd43a Branch: premain Author: Aleksey Shipilev Date: 2025-02-13 20:06:33 +0000 URL: https://git.openjdk.org/leyden/commit/d8fcd43a24a989b71ed30945fda78541c1e42b60 8349927: Waiting for compiler termination delays shutdown for 10+ ms Reviewed-by: kvn, dholmes ! src/hotspot/share/runtime/vmOperations.cpp Changeset: 3e7acfac Branch: premain Author: Naoto Sato Date: 2025-02-13 20:57:48 +0000 URL: https://git.openjdk.org/leyden/commit/3e7acfac48229441b243a6ac564e719963e4f43d 8349873: StackOverflowError after JDK-8342550 if -Duser.timezone= is set to a deprecated zone id Reviewed-by: joehw, jlu, iris ! src/java.base/share/classes/java/util/TimeZone.java ! test/jdk/java/util/TimeZone/ThreeLetterZoneID.java Changeset: 3741c980 Branch: premain Author: Justin Lu Date: 2025-02-13 22:25:23 +0000 URL: https://git.openjdk.org/leyden/commit/3741c980b865b7122d07655353657d683923c40d 8349883: Locale.LanguageRange.parse("-") throws ArrayIndexOutOfBoundsException Reviewed-by: naoto ! src/java.base/share/classes/java/util/Locale.java - test/jdk/java/util/Locale/LRToString.java ! test/jdk/java/util/Locale/LanguageRangeTest.java Changeset: ff52859d Branch: premain Author: Alexey Semenyuk Date: 2025-02-13 22:53:30 +0000 URL: https://git.openjdk.org/leyden/commit/ff52859d2ad65b97c56dd19323213a0d07be47ae 8285624: jpackage fails to create exe, msi when Windows OS is in FIPS mode Reviewed-by: almatvee ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WixPipeline.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WixTool.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WixToolset.java Changeset: 57f4c30f Branch: premain Author: Dmitry Chuyko Date: 2025-02-14 07:54:44 +0000 URL: https://git.openjdk.org/leyden/commit/57f4c30fb6be1da57c8fcc742b5c36d842eef397 8347917: AArch64: Enable upper GPR registers in C1 Reviewed-by: aph ! src/hotspot/cpu/aarch64/c1_Defs_aarch64.hpp ! src/hotspot/cpu/aarch64/c1_FrameMap_aarch64.cpp ! src/hotspot/cpu/aarch64/c1_FrameMap_aarch64.hpp ! src/hotspot/cpu/aarch64/c1_LinearScan_aarch64.hpp ! src/hotspot/cpu/aarch64/c1_Runtime1_aarch64.cpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_FrameMap.hpp Changeset: fa1bd234 Branch: premain Author: Nizar Benalla Date: 2025-02-14 12:24:36 +0000 URL: https://git.openjdk.org/leyden/commit/fa1bd2344e60163bf247c668b94f98c50c72855a 8343802: Prevent NULL usage backsliding Reviewed-by: kbarrett ! test/hotspot/jtreg/TEST.groups + test/hotspot/jtreg/sources/TestNoNULL.java Changeset: 19c0ce43 Branch: premain Author: Alexander Zvegintsev Date: 2025-02-14 12:55:36 +0000 URL: https://git.openjdk.org/leyden/commit/19c0ce43e258d00d77314d76a361feb2069a5af1 8349751: AIX build failure after upgrade pipewire to 1.3.81 Reviewed-by: mdoerr ! src/java.desktop/unix/native/libpipewire/include/spa/utils/endian.h Changeset: db42a48d Branch: premain Author: Alexey Semenyuk Date: 2025-02-14 13:12:30 +0000 URL: https://git.openjdk.org/leyden/commit/db42a48dc5d49783545757bd34aeead851f9288e 8350011: Convert jpackage test lib tests in JUnit format Reviewed-by: almatvee + test/jdk/tools/jpackage/helpers-test/TEST.properties ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/AnnotationsTest.java ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/DirectoryContentVerifierTest.java + test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/JUnitAdapter.java ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/JavaAppDescTest.java ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/TKitTest.java - test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/TestSuite.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Main.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestBuilder.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestInstance.java Changeset: 742e735d Branch: premain Author: Aleksey Shipilev Date: 2025-02-14 13:53:06 +0000 URL: https://git.openjdk.org/leyden/commit/742e735d7f6c4ee9ca5a4d290c59d7d6ec1f7635 8349858: Print compilation task before blocking compiler thread for shutdown Reviewed-by: kvn, chagedorn ! src/hotspot/share/compiler/compileBroker.cpp Changeset: 9ea81d90 Branch: premain Author: anass baya Committer: Alexey Ivanov Date: 2025-02-14 15:19:09 +0000 URL: https://git.openjdk.org/leyden/commit/9ea81d90175c11460d0efa83f82ceccc4ee2cd3b 8349351: Combine Screen Inset Tests into a Single File Reviewed-by: honkar, dnguyen, aivanov - test/jdk/java/awt/Multiscreen/MultiScreenInsetsTest/MultiScreenInsetsTest.java ! test/jdk/java/awt/Toolkit/ScreenInsetsTest/ScreenInsetsTest.java Changeset: 0414dcec Branch: premain Author: Maxim Kartashev Committer: Brian Burkhalter Date: 2025-02-14 15:28:59 +0000 URL: https://git.openjdk.org/leyden/commit/0414dcec118fce24037ca1a6b00561c0ce4c6953 8349812: (fs) Files.newByteChannel with empty path name and CREATE_NEW throws unexpected exception Reviewed-by: bpb ! src/java.base/unix/classes/sun/nio/fs/UnixChannelFactory.java ! test/jdk/java/nio/file/Files/SBC.java Changeset: 2a90b90a Branch: premain Author: Ivan ?ipka Committer: Mahendra Chhipa Date: 2025-02-14 16:18:47 +0000 URL: https://git.openjdk.org/leyden/commit/2a90b90a95da91b71cd90caeafae5adaee621ebf 8346117: Add test annotation Reviewed-by: coffeys ! test/jdk/sun/nio/cs/Test6392804.java ! test/jdk/sun/nio/cs/TestUTF_32.java Changeset: 38322407 Branch: premain Author: Kelvin Nilsen Date: 2025-02-14 16:40:08 +0000 URL: https://git.openjdk.org/leyden/commit/38322407cd1664115e975c7fd9cb61e40d9557b5 8348594: Shenandoah: Do not penalize for degeneration when not the fault of triggering heuristic Reviewed-by: phh, wkemper ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahAdaptiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahAdaptiveHeuristics.hpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahAggressiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahCompactHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahHeuristics.hpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahPassiveHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahStaticHeuristics.cpp ! src/hotspot/share/gc/shenandoah/heuristics/shenandoahYoungHeuristics.cpp ! src/hotspot/share/gc/shenandoah/shenandoahControlThread.cpp ! src/hotspot/share/gc/shenandoah/shenandoahFreeSet.hpp ! src/hotspot/share/gc/shenandoah/shenandoahRegulatorThread.cpp Changeset: ba6c9659 Branch: premain Author: Kelvin Nilsen Date: 2025-02-14 16:41:26 +0000 URL: https://git.openjdk.org/leyden/commit/ba6c96599aac1a6c08cb66c611474f83bbc9b260 8348595: GenShen: Fix generational free-memory no-progress check Reviewed-by: phh, xpeng ! src/hotspot/share/gc/shenandoah/shenandoahDegeneratedGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahFreeSet.hpp ! src/hotspot/share/gc/shenandoah/shenandoahFullGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMetrics.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMetrics.hpp Changeset: b6443f6f Branch: premain Author: Chris Plummer Date: 2025-02-14 19:40:47 +0000 URL: https://git.openjdk.org/leyden/commit/b6443f6ff96707f67552df41c01d18c193560223 8348347: Cleanup JavaThread subclass support in SA Reviewed-by: kevinw, sspitsyn - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/AttachListenerThread.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/CompilerThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/DeoptimizeObjectsALotThread.java + src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/HiddenJavaThread.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/JavaThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/JvmtiAgentThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/MonitorDeflationThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/NotificationThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/ServiceThread.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/StringDedupThread.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Thread.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/ThreadStackTrace.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Threads.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/StackTrace.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/JavaThreadsPanel.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/PointerLocation.java Changeset: 62345364 Branch: premain Author: Aleksey Shipilev Date: 2025-02-15 07:22:20 +0000 URL: https://git.openjdk.org/leyden/commit/623453647a8a387b2d8d375cb18b33666abc16ee 8349915: CTW: Lots of level 3 compiles are done at level 2 after JDK-8348570 Reviewed-by: kvn, chagedorn ! src/hotspot/share/compiler/compilationPolicy.cpp ! src/hotspot/share/compiler/compileTask.hpp Changeset: 5cf11324 Branch: premain Author: Alexey Semenyuk Date: 2025-02-15 14:31:29 +0000 URL: https://git.openjdk.org/leyden/commit/5cf11324afdeed0189e0491845a7ffe78c7c1e13 8350098: jpackage test lib erroneously will run methods without @Test annotation as tests Reviewed-by: almatvee ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/AnnotationsTest.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Annotations.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestBuilder.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TestMethodSupplier.java Changeset: 7d11418c Branch: premain Author: Bradford Wetmore Date: 2025-02-15 22:40:46 +0000 URL: https://git.openjdk.org/leyden/commit/7d11418c820b46926a25907766d16083a4b349de 8350147: Replace example in KEM class with the one from JEP 452 Reviewed-by: weijun ! src/java.base/share/classes/javax/crypto/KEM.java Changeset: 21927237 Branch: premain Author: David Holmes Date: 2025-02-17 02:09:25 +0000 URL: https://git.openjdk.org/leyden/commit/2192723734e4edd2d2136637a46e9256c1b15703 8350162: ProblemList compiler/tiered/Level2RecompilationTest.java Reviewed-by: jpai ! test/hotspot/jtreg/ProblemList.txt Changeset: 5e9d72e2 Branch: premain Author: Matthias Baesken Date: 2025-02-17 08:02:51 +0000 URL: https://git.openjdk.org/leyden/commit/5e9d72e2241426c0cf26abadab73e63434d51a4a 8350094: Linux gcc 13.2.0 build fails when ubsan is enabled Reviewed-by: mdoerr, prr, kbarrett ! make/autoconf/jdk-options.m4 Changeset: b1b48286 Branch: premain Author: Aleksey Shipilev Date: 2025-02-17 09:21:49 +0000 URL: https://git.openjdk.org/leyden/commit/b1b48286a6cbee8a9f96d739ab437915c573022c 8350086: Inline hot Method accessors for faster task selection Reviewed-by: kvn, coleenp, aph, vlivanov ! src/hotspot/share/compiler/compileTask.cpp ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/method.hpp ! src/hotspot/share/oops/method.inline.hpp ! src/hotspot/share/oops/methodData.cpp ! src/hotspot/share/runtime/java.cpp Changeset: f1258f9e Branch: premain Author: Johan Sj?len Date: 2025-02-17 09:22:57 +0000 URL: https://git.openjdk.org/leyden/commit/f1258f9e16b063c0fdbdd614ae2dc76c67607654 8349755: Fix corner case issues in async UL Reviewed-by: dholmes, aboldtch ! src/hotspot/share/logging/logAsyncWriter.cpp ! src/hotspot/share/logging/logAsyncWriter.hpp ! src/hotspot/share/logging/logFileOutput.cpp ! src/hotspot/share/logging/logFileStreamOutput.cpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/logging/logTagSet.cpp + test/hotspot/jtreg/runtime/logging/AsyncDeathTest.java Changeset: 071c8f51 Branch: premain Author: Jaikiran Pai Date: 2025-02-17 11:05:59 +0000 URL: https://git.openjdk.org/leyden/commit/071c8f515537d6030ae7055e309b4f4a6a495bc8 8349909: jdk.internal.jimage.decompressor.ZipDecompressor does not close the Inflater in exceptional cases Reviewed-by: lancea, alanb ! src/java.base/share/classes/jdk/internal/jimage/decompressor/ZipDecompressor.java Changeset: b3a4026c Branch: premain Author: Gui Cao Committer: Fei Yang Date: 2025-02-17 11:35:07 +0000 URL: https://git.openjdk.org/leyden/commit/b3a4026c65eb049eb4f3a3cbf52c9f0c9979a256 8349764: RISC-V: C1: Improve Class.isInstance intrinsic Reviewed-by: fyang, mli ! src/hotspot/cpu/riscv/c1_LIRGenerator_riscv.cpp ! src/hotspot/cpu/riscv/c1_Runtime1_riscv.cpp Changeset: 7f3ecb4d Branch: premain Author: Matthias Ernst Date: 2025-02-17 13:07:23 +0000 URL: https://git.openjdk.org/leyden/commit/7f3ecb4d92fdb084ce632cab484cf4578487b090 8346664: C2: Optimize mask check with constant offset Reviewed-by: epeter, qamai ! src/hotspot/share/opto/mulnode.cpp ! src/hotspot/share/opto/mulnode.hpp ! test/hotspot/jtreg/compiler/c2/irTests/TestShiftAndMask.java ! test/hotspot/jtreg/compiler/loopopts/superword/TestEquivalentInvariants.java ! test/hotspot/jtreg/compiler/vectorization/TestPopulateIndex.java Changeset: 2bd8f026 Branch: premain Author: Alexey Ivanov Date: 2025-02-17 13:12:02 +0000 URL: https://git.openjdk.org/leyden/commit/2bd8f026dbd449e810dc6ce96cd9235e5cb51a9b 8342524: Use latch in AbstractButton/bug6298940.java instead of delay Reviewed-by: azvegint, kizune, dnguyen, achung + test/jdk/javax/swing/AbstractButton/bug6298940.java Changeset: 906358d3 Branch: premain Author: Alexey Ivanov Date: 2025-02-17 13:13:15 +0000 URL: https://git.openjdk.org/leyden/commit/906358d3a14ce755fec771f0a6bb856b3a8f3297 8294155: Exception thrown before awaitAndCheck hangs PassFailJFrame Reviewed-by: serb, azvegint, kizune ! test/jdk/java/awt/regtesthelpers/PassFailJFrame.java Changeset: 650d0d95 Branch: premain Author: Alexey Ivanov Date: 2025-02-17 13:13:42 +0000 URL: https://git.openjdk.org/leyden/commit/650d0d954ea8e20e31f17d459993d5edecf08a4c 8348865: JButton/bug4796987.java never runs because Windows XP is unavailable Reviewed-by: tr, abhiscxk, serb ! test/jdk/javax/swing/JButton/4796987/bug4796987.java Changeset: 8b2aa51b Branch: premain Author: Suchismith Roy Committer: Amit Kumar Date: 2025-02-17 13:28:34 +0000 URL: https://git.openjdk.org/leyden/commit/8b2aa51b0c36a993e46fea7a4b61788dd101d606 8349780: AIX os::get_summary_cpu_info support Power 11 Reviewed-by: stuefe, amitkumar ! src/hotspot/os/aix/os_aix.cpp Changeset: 3f0c1370 Branch: premain Author: Hannes Walln?fer Date: 2025-02-17 15:31:18 +0000 URL: https://git.openjdk.org/leyden/commit/3f0c1370269db978072814c2170fc3987efade85 8347123: Add missing @serial tags to other modules Reviewed-by: prr, nbenalla, alanb ! src/java.datatransfer/share/classes/java/awt/datatransfer/DataFlavor.java ! src/java.management/share/classes/javax/management/ImmutableDescriptor.java ! src/java.management/share/classes/javax/management/MBeanPermission.java ! src/java.management/share/classes/javax/management/remote/JMXServiceURL.java ! src/java.management/share/classes/javax/management/remote/NotificationResult.java ! src/java.scripting/share/classes/javax/script/ScriptException.java ! src/java.security.jgss/share/classes/javax/security/auth/kerberos/KerberosTicket.java ! src/java.smartcardio/share/classes/javax/smartcardio/ATR.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialBlob.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialClob.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialJavaObject.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialRef.java ! src/java.sql.rowset/share/classes/javax/sql/rowset/spi/SyncProviderException.java ! src/java.sql/share/classes/java/sql/SQLClientInfoException.java ! src/java.sql/share/classes/javax/sql/StatementEvent.java ! src/java.xml.crypto/share/classes/javax/xml/crypto/URIReferenceException.java ! src/java.xml/share/classes/javax/xml/namespace/QName.java ! src/java.xml/share/classes/javax/xml/parsers/FactoryConfigurationError.java ! src/java.xml/share/classes/javax/xml/stream/FactoryConfigurationError.java ! src/java.xml/share/classes/javax/xml/stream/XMLStreamException.java ! src/java.xml/share/classes/javax/xml/transform/TransformerException.java ! src/java.xml/share/classes/javax/xml/transform/TransformerFactoryConfigurationError.java ! src/java.xml/share/classes/org/w3c/dom/DOMException.java ! src/java.xml/share/classes/org/w3c/dom/events/EventException.java ! src/java.xml/share/classes/org/w3c/dom/ls/LSException.java ! src/java.xml/share/classes/org/w3c/dom/ranges/RangeException.java ! src/jdk.attach/share/classes/com/sun/tools/attach/AgentInitializationException.java ! src/jdk.dynalink/share/classes/jdk/dynalink/beans/StaticClass.java ! src/jdk.incubator.vector/share/classes/jdk/incubator/vector/Float16.java ! src/jdk.jdi/share/classes/com/sun/jdi/ClassNotLoadedException.java ! src/jdk.jdi/share/classes/com/sun/jdi/InternalException.java ! src/jdk.jdi/share/classes/com/sun/jdi/InvocationException.java ! src/jdk.jdi/share/classes/com/sun/jdi/connect/IllegalConnectorArgumentsException.java ! src/jdk.jdi/share/classes/com/sun/jdi/connect/VMStartException.java ! src/jdk.jshell/share/classes/jdk/jshell/EvalException.java ! src/jdk.jshell/share/classes/jdk/jshell/UnresolvedReferenceException.java ! src/jdk.jshell/share/classes/jdk/jshell/spi/ExecutionControl.java ! src/jdk.jshell/share/classes/jdk/jshell/spi/SPIResolutionException.java ! src/jdk.xml.dom/share/classes/org/w3c/dom/xpath/XPathException.java Changeset: 8ec58939 Branch: premain Author: Doug Simon Date: 2025-02-17 19:34:29 +0000 URL: https://git.openjdk.org/leyden/commit/8ec589390f7dc67dd883a1efddb8da32790f6591 8346781: [JVMCI] Limit ServiceLoader to class initializers Reviewed-by: never, yzheng ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/Cleaner.java ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/HotSpotVMConfig.java ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/services/JVMCIServiceLocator.java ! src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/services/Services.java ! test/hotspot/jtreg/compiler/jvmci/events/JvmciShutdownEventListener.java ! test/hotspot/jtreg/compiler/jvmci/events/JvmciShutdownEventTest.java Changeset: 8df80400 Branch: premain Author: Fei Yang Date: 2025-02-18 00:19:46 +0000 URL: https://git.openjdk.org/leyden/commit/8df804005ed772936fd77a4c0335a5620f909570 8350093: RISC-V: java/math/BigInteger/LargeValueExceptions.java timeout with COH Reviewed-by: mli, fjiang ! src/hotspot/cpu/riscv/macroAssembler_riscv.cpp Changeset: 3353f8e0 Branch: premain Author: Stefan Karlsson Date: 2025-02-18 07:51:45 +0000 URL: https://git.openjdk.org/leyden/commit/3353f8e0875165adbc8ee764a4c8d8817a87cd88 8349652: Rewire nmethod oop load barriers Reviewed-by: kvn, aboldtch ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/gc/shared/barrierSetNMethod.cpp ! src/hotspot/share/gc/shared/barrierSetNMethod.hpp ! src/hotspot/share/gc/z/zBarrierSet.inline.hpp ! src/hotspot/share/gc/z/zBarrierSetNMethod.cpp ! src/hotspot/share/gc/z/zBarrierSetNMethod.hpp ! src/hotspot/share/gc/z/zNMethod.cpp ! src/hotspot/share/gc/z/zNMethod.hpp ! src/hotspot/share/oops/access.hpp ! src/hotspot/share/oops/accessDecorators.hpp Changeset: 013fda1d Branch: premain Author: Marc Chevalier Committer: Christian Hagedorn Date: 2025-02-18 08:43:21 +0000 URL: https://git.openjdk.org/leyden/commit/013fda1dad22d7aca3ee24c11dc42cb3885b5323 8348172: C2: Remove unused local variables in filter_helper() methods Reviewed-by: kvn, haosun, chagedorn ! src/hotspot/share/opto/type.cpp Changeset: ff05d979 Branch: premain Author: Marc Chevalier Committer: Christian Hagedorn Date: 2025-02-18 09:25:24 +0000 URL: https://git.openjdk.org/leyden/commit/ff05d9795322fee6def559bd6776de42b96c27dc 8349180: Remove redundant initialization in ciField constructor Reviewed-by: chagedorn ! src/hotspot/share/ci/ciField.cpp Changeset: 160db5f0 Branch: premain Author: Afshin Zafari Date: 2025-02-18 09:56:38 +0000 URL: https://git.openjdk.org/leyden/commit/160db5f0f000f8471f71e0725da862d57db28c8a 8340110: Ubsan: verifier.cpp:2043:19: runtime error: shift exponent 100 is too large for 32-bit type 'int' Reviewed-by: dholmes, jsjolen ! src/hotspot/share/classfile/verifier.cpp Changeset: d7baae3e Branch: premain Author: SendaoYan Date: 2025-02-18 09:56:49 +0000 URL: https://git.openjdk.org/leyden/commit/d7baae3ee92bbc94e380703f173a4d4a9de75e29 8350178: Incorrect comment after JDK-8345580 Reviewed-by: chagedorn, kvn ! src/hotspot/share/opto/node.hpp Changeset: 8193e0d5 Branch: premain Author: Roberto Casta?eda Lozano Date: 2025-02-18 10:23:35 +0000 URL: https://git.openjdk.org/leyden/commit/8193e0d53ac806d6974e2aacc7b7476aeb52a5fd 8346280: C2: implement late barrier elision for G1 Reviewed-by: tschatzl, aboldtch, mdoerr ! src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp ! src/hotspot/share/gc/g1/c2/g1BarrierSetC2.hpp ! src/hotspot/share/gc/shared/c2/barrierSetC2.cpp ! src/hotspot/share/gc/shared/c2/barrierSetC2.hpp ! src/hotspot/share/gc/shared/c2/cardTableBarrierSetC2.cpp ! src/hotspot/share/gc/shared/c2/cardTableBarrierSetC2.hpp ! src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp ! src/hotspot/share/gc/z/c2/zBarrierSetC2.hpp ! test/hotspot/jtreg/compiler/gcbarriers/TestG1BarrierGeneration.java Changeset: 885be2ef Branch: premain Author: Hamlin Li Date: 2025-02-18 10:24:51 +0000 URL: https://git.openjdk.org/leyden/commit/885be2efa6b1359a7c7ab36882e19a7eaba77fb3 8349908: RISC-V: C2 SelectFromTwoVector Reviewed-by: fyang, luhenry ! src/hotspot/cpu/riscv/riscv_v.ad Changeset: e1d0a9c8 Branch: premain Author: Matthias Baesken Date: 2025-02-18 13:20:05 +0000 URL: https://git.openjdk.org/leyden/commit/e1d0a9c832ef3e92faaed7f290ff56c0ed8a9d94 8350202: Tune for Power10 CPUs on Linux ppc64le Reviewed-by: mdoerr ! make/autoconf/flags-cflags.m4 Changeset: 62d93f2a Branch: premain Author: Leonid Mesnik Date: 2025-02-18 20:06:05 +0000 URL: https://git.openjdk.org/leyden/commit/62d93f2a2222a044ac4aa409efd69e776f0d43da 8346050: Update BuildTestLib.gmk to build whole testlibrary Reviewed-by: weijun, ihse ! make/test/BuildTestLib.gmk ! test/lib/jdk/test/lib/security/CertUtils.java ! test/lib/jdk/test/lib/security/FixedSecureRandom.java ! test/lib/jdk/test/lib/security/SeededSecureRandom.java ! test/lib/jdk/test/lib/security/XMLUtils.java Changeset: fe713ff6 Branch: premain Author: Ioi Lam Date: 2025-02-20 19:36:31 +0000 URL: https://git.openjdk.org/leyden/commit/fe713ff64e219c31bcc1425ba7f460c0fba89ed0 Merge branch 'master' into premain ! .jcheck/conf ! make/InitSupport.gmk ! make/hotspot/lib/JvmFeatures.gmk ! src/hotspot/cpu/x86/c2_MacroAssembler_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.hpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/cpu/x86/x86_64.ad ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/ci/ciField.cpp ! src/hotspot/share/ci/ciInstanceKlass.cpp ! src/hotspot/share/ci/ciInstanceKlass.hpp ! src/hotspot/share/ci/ciObjectFactory.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/compiler/compilationPolicy.cpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/compiler/compileTask.cpp ! src/hotspot/share/compiler/compileTask.hpp ! src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp ! src/hotspot/share/gc/shared/barrierSetNMethod.cpp ! src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp ! src/hotspot/share/jvmci/jvmciRuntime.cpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/method.hpp ! src/hotspot/share/oops/methodData.cpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/doCall.cpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/parse1.cpp ! src/hotspot/share/opto/parseHelper.cpp ! src/hotspot/share/opto/type.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/jvmtiEnv.cpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/System.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Threads.java ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups ! .jcheck/conf ! make/InitSupport.gmk ! make/hotspot/lib/JvmFeatures.gmk ! src/hotspot/cpu/x86/c2_MacroAssembler_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.cpp ! src/hotspot/cpu/x86/macroAssembler_x86.hpp ! src/hotspot/cpu/x86/stubGenerator_x86_64.cpp ! src/hotspot/cpu/x86/x86_64.ad ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/ci/ciField.cpp ! src/hotspot/share/ci/ciInstanceKlass.cpp ! src/hotspot/share/ci/ciInstanceKlass.hpp ! src/hotspot/share/ci/ciObjectFactory.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/vmSymbols.hpp ! src/hotspot/share/code/codeCache.cpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/compiler/compilationPolicy.cpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/compiler/compileTask.cpp ! src/hotspot/share/compiler/compileTask.hpp ! src/hotspot/share/gc/g1/c2/g1BarrierSetC2.cpp ! src/hotspot/share/gc/shared/barrierSetNMethod.cpp ! src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp ! src/hotspot/share/jvmci/jvmciRuntime.cpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/oops/klass.cpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/method.hpp ! src/hotspot/share/oops/methodData.cpp ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/compile.cpp ! src/hotspot/share/opto/doCall.cpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/opto/parse1.cpp ! src/hotspot/share/opto/parseHelper.cpp ! src/hotspot/share/opto/type.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/jvmtiEnv.cpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/java/lang/System.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/Threads.java ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups Changeset: 46d4a601 Branch: premain Author: Vladimir Kozlov Date: 2025-02-18 20:08:08 +0000 URL: https://git.openjdk.org/leyden/commit/46d4a601e04f90b11d4ccc97a49f4e7010b4fd83 8349088: De-virtualize Codeblob and nmethod Co-authored-by: Stefan Karlsson Co-authored-by: Chris Plummer Reviewed-by: cjplummer, aboldtch, dlong ! src/hotspot/share/code/codeBlob.cpp ! src/hotspot/share/code/codeBlob.hpp ! src/hotspot/share/code/dependencyContext.cpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/nmethod.hpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/c1/Runtime1.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/AdapterBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/BufferBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/CodeBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/CodeCache.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/DeoptimizationBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/ExceptionBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/MethodHandlesAdapterBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/NMethod.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/RuntimeStub.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/SafepointBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/SingletonBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/UncommonTrapBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/UpcallStub.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/VtableBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/CodeHeap.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/PStack.java Changeset: f2b4e12a Branch: premain Author: Doug Simon Date: 2025-02-18 20:18:08 +0000 URL: https://git.openjdk.org/leyden/commit/f2b4e12afe67086a2ae08081fd545e5ce4d731fd 8350263: JvmciNotifyBootstrapFinishedEventTest intermittently times out Reviewed-by: yzheng, never ! test/hotspot/jtreg/compiler/jvmci/TestUncaughtErrorInCompileMethod.config ! test/hotspot/jtreg/compiler/jvmci/TestUncaughtErrorInCompileMethod.java ! test/hotspot/jtreg/compiler/jvmci/events/JvmciNotifyBootstrapFinishedEventTest.config ! test/hotspot/jtreg/compiler/jvmci/events/JvmciNotifyBootstrapFinishedEventTest.java Changeset: 2d03bd00 Branch: premain Author: Leonid Mesnik Date: 2025-02-18 20:58:04 +0000 URL: https://git.openjdk.org/leyden/commit/2d03bd007895b139b027947852c8b5ad8eab49b6 8350280: The JDK-8346050 testlibrary changes break the build Reviewed-by: dholmes ! make/test/BuildTestLib.gmk Changeset: 250c2d44 Branch: premain Author: Ioi Lam Date: 2025-02-20 20:22:56 +0000 URL: https://git.openjdk.org/leyden/commit/250c2d4495134589c03ed3b1819c9afb5e322157 Merge branch 'master' into premain ! src/hotspot/share/code/dependencyContext.cpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/nmethod.hpp ! src/hotspot/share/oops/method.inline.hpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/hotspot/share/code/dependencyContext.cpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/nmethod.hpp ! src/hotspot/share/oops/method.inline.hpp ! src/hotspot/share/runtime/vmStructs.cpp From kvn at openjdk.org Fri Feb 21 18:51:10 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Fri, 21 Feb 2025 18:51:10 GMT Subject: RFR: 8350488: [leyden] Experimental AOT-only mode In-Reply-To: References: Message-ID: On Fri, 21 Feb 2025 10:36:19 GMT, Aleksey Shipilev wrote: > There are interesting use cases where we want the AOT-only mode. We can emulate this in current Leyden prototype by relying on preload code, and stopping any profiling, which would naturally lead to no JIT compilations. This would also make interpreter code a bit faster in case we need to fall back there. This mode looks also helpful for studying the compiler dynamics. > > Additional testing: > - [x] Eyeballing compilation logs with `-XX:+PreloadOnly` > - [x] Linux x86_64 server fastdebug, `runtime/cds` > - [x] Linux x86_64 server fastdebug, `runtime/cds` with `-XX:+PreloadOnly` Looks good. Next step could be to cache only preload code during training to reduce size of cached data and time to load it. You don't need to save profiling data too. ------------- Marked as reviewed by kvn (Committer). PR Review: https://git.openjdk.org/leyden/pull/44#pullrequestreview-2633955110 From shade at openjdk.org Fri Feb 21 19:41:08 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 21 Feb 2025 19:41:08 GMT Subject: RFR: 8350488: [leyden] Experimental AOT-only mode In-Reply-To: References: Message-ID: <0os0vdXDu55b2kp-foOFdu2KrDkpquE2lerm_yKrhfE=.ecdc88ef-b486-4b98-b119-2f9e6b099898@github.com> On Fri, 21 Feb 2025 18:48:40 GMT, Vladimir Kozlov wrote: > Next step could be to cache only preload code during training to reduce size of cached data and time to load it. You don't need to save profiling data too. Yes, that would a good next step if we find this thing useful. Thanks for the review! ------------- PR Comment: https://git.openjdk.org/leyden/pull/44#issuecomment-2675389543 From duke at openjdk.org Fri Feb 21 19:41:08 2025 From: duke at openjdk.org (duke) Date: Fri, 21 Feb 2025 19:41:08 GMT Subject: RFR: 8350488: [leyden] Experimental AOT-only mode In-Reply-To: References: Message-ID: On Fri, 21 Feb 2025 10:36:19 GMT, Aleksey Shipilev wrote: > There are interesting use cases where we want the AOT-only mode. We can emulate this in current Leyden prototype by relying on preload code, and stopping any profiling, which would naturally lead to no JIT compilations. This would also make interpreter code a bit faster in case we need to fall back there. This mode looks also helpful for studying the compiler dynamics. > > Additional testing: > - [x] Eyeballing compilation logs with `-XX:+PreloadOnly` > - [x] Linux x86_64 server fastdebug, `runtime/cds` > - [x] Linux x86_64 server fastdebug, `runtime/cds` with `-XX:+PreloadOnly` @shipilev Your change (at version 3635e59b12eef7ced78b7ce4164835137cf51ebc) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/44#issuecomment-2675392100 From kvn at openjdk.org Fri Feb 21 20:27:57 2025 From: kvn at openjdk.org (Vladimir Kozlov) Date: Fri, 21 Feb 2025 20:27:57 GMT Subject: git: openjdk/leyden: premain: 8350488: [leyden] Experimental AOT-only mode Message-ID: Changeset: aa4e9472 Branch: premain Author: Aleksey Shipilev Committer: Vladimir Kozlov Date: 2025-02-21 20:27:05 +0000 URL: https://git.openjdk.org/leyden/commit/aa4e947287074155685685454d3714e503c76951 8350488: [leyden] Experimental AOT-only mode Reviewed-by: kvn ! src/hotspot/cpu/aarch64/templateInterpreterGenerator_aarch64.cpp ! src/hotspot/cpu/arm/templateInterpreterGenerator_arm.cpp ! src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp ! src/hotspot/cpu/riscv/templateInterpreterGenerator_riscv.cpp ! src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp ! src/hotspot/cpu/x86/templateInterpreterGenerator_x86.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/compiler/compilerDefinitions.cpp ! src/hotspot/share/compiler/compiler_globals.hpp ! src/hotspot/share/interpreter/interpreterRuntime.cpp From shade at openjdk.org Fri Feb 21 20:30:12 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Fri, 21 Feb 2025 20:30:12 GMT Subject: Integrated: 8350488: [leyden] Experimental AOT-only mode In-Reply-To: References: Message-ID: On Fri, 21 Feb 2025 10:36:19 GMT, Aleksey Shipilev wrote: > There are interesting use cases where we want the AOT-only mode. We can emulate this in current Leyden prototype by relying on preload code, and stopping any profiling, which would naturally lead to no JIT compilations. This would also make interpreter code a bit faster in case we need to fall back there. This mode looks also helpful for studying the compiler dynamics. > > Additional testing: > - [x] Eyeballing compilation logs with `-XX:+PreloadOnly` > - [x] Linux x86_64 server fastdebug, `runtime/cds` > - [x] Linux x86_64 server fastdebug, `runtime/cds` with `-XX:+PreloadOnly` This pull request has now been integrated. Changeset: aa4e9472 Author: Aleksey Shipilev Committer: Vladimir Kozlov URL: https://git.openjdk.org/leyden/commit/aa4e947287074155685685454d3714e503c76951 Stats: 34 lines in 10 files changed: 22 ins; 0 del; 12 mod 8350488: [leyden] Experimental AOT-only mode Reviewed-by: kvn ------------- PR: https://git.openjdk.org/leyden/pull/44 From duke at openjdk.org Fri Feb 21 22:48:24 2025 From: duke at openjdk.org (duke) Date: Fri, 21 Feb 2025 22:48:24 GMT Subject: git: openjdk/leyden: premain: Make {Record,Replay}Training options diagnostic Message-ID: Changeset: 076c71f7 Branch: premain Author: Igor Veresov Date: 2025-02-21 14:45:26 +0000 URL: https://git.openjdk.org/leyden/commit/076c71f7cb9887ef3d64b752976610d19792203b Make {Record,Replay}Training options diagnostic ! README.md ! src/hotspot/share/compiler/compiler_globals.hpp ! test/hotspot/jtreg/premain/javac/javac-test.sh ! test/hotspot/jtreg/premain/javac_new_workflow/run.sh ! test/hotspot/jtreg/premain/jmh/run.sh ! test/hotspot/jtreg/premain/lib/bench-lib.sh ! test/hotspot/jtreg/premain/lib/premain-run.sh ! test/hotspot/jtreg/premain/spring-petclinic/Makefile ! test/hotspot/jtreg/premain/spring-petclinic/WarmupMakefile ! test/hotspot/jtreg/premain/spring-petclinic/bench.sh From vlivanov at openjdk.org Fri Feb 21 23:25:07 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Fri, 21 Feb 2025 23:25:07 GMT Subject: RFR: 8350488: [leyden] Experimental AOT-only mode In-Reply-To: References: Message-ID: <0GMj0e7nXtz-kpAqQejfMzGNekAef5_2qvfYO88juAM=.49a72150-a5ab-4bbd-8852-82e07244d57e@github.com> On Fri, 21 Feb 2025 10:36:19 GMT, Aleksey Shipilev wrote: > There are interesting use cases where we want the AOT-only mode. We can emulate this in current Leyden prototype by relying on preload code, and stopping any profiling, which would naturally lead to no JIT compilations. This would also make interpreter code a bit faster in case we need to fall back there. This mode looks also helpful for studying the compiler dynamics. > > Additional testing: > - [x] Eyeballing compilation logs with `-XX:+PreloadOnly` > - [x] Linux x86_64 server fastdebug, `runtime/cds` > - [x] Linux x86_64 server fastdebug, `runtime/cds` with `-XX:+PreloadOnly` Proposed solution looks to me way too specific and niche. Instead, I'd prefer to see a way to combine different JIT-compilation modes (`-XX:TieredStopAtLevel=01234`) with ability to limit usage of AOTed code (e.g., `-XX:DisableAOTCodeLevels=P124`). `PreloadOnly` is equivalent to `-XX:TieredStopAtLevel=0` and `-XX:DisableAOTCodeLevels=124`. ------------- PR Comment: https://git.openjdk.org/leyden/pull/44#issuecomment-2675809710 From iklam at openjdk.org Sat Feb 22 02:14:07 2025 From: iklam at openjdk.org (Ioi Lam) Date: Sat, 22 Feb 2025 02:14:07 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v2] In-Reply-To: <6Gt8iByKGz27UR2a9gELj3OpopeY6EjlxPxOe2A2M_U=.e1bb6000-fc37-41fd-9645-e8838b2aeefb@github.com> References: <6Gt8iByKGz27UR2a9gELj3OpopeY6EjlxPxOe2A2M_U=.e1bb6000-fc37-41fd-9645-e8838b2aeefb@github.com> Message-ID: On Wed, 19 Feb 2025 19:33:03 GMT, Mat Carter wrote: >> Mat Carter has updated the pull request incrementally with one additional commit since the last revision: >> >> Fix style issue > >> Is this a new requirement, or did I perform a bad git operation somehow? I didn't have a problem with my last PR >> >> image > > I just sync'd my premain with leyden/premain and merged the changes into my branch I tested on top of the latest premain repo and all Leyden tests passed. @macarte I think this PR is ready to be integrated. ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2675944304 From vlivanov at openjdk.org Mon Feb 24 08:07:19 2025 From: vlivanov at openjdk.org (Vladimir Ivanov) Date: Mon, 24 Feb 2025 08:07:19 GMT Subject: RFR: 8349814: [leyden] Reduce uncommon traps in preload code [v3] In-Reply-To: References: Message-ID: <_ohU-P_NgdMUhiz9eNlyJNUqra1y1CzOmxboGGrzeis=.d44b21be-3489-40a6-b29e-087b814964c7@github.com> On Fri, 21 Feb 2025 12:56:44 GMT, Aleksey Shipilev wrote: >> Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. >> >> Additional testing: >> - [x] Ad-hoc perf tests (see comment below) >> - [x] Linux x86_64 server fastdebug, `runtime/cds` > > Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Shuffle things around to capture more cases > - Comment > - Fix Looks good. src/hotspot/share/runtime/deoptimization.cpp line 2134: > 2132: // Compiler logs all uncommon traps with -Xlog:scc. That log is noisy, and some traps may be > 2133: // legitimate. Here, we log the problems that really caused the deopts at runtime. > 2134: log_warning(deoptimization)("In preload code: reason=%s action=%s method=%s", Does it warrant a warning though? It can become quite noisy and users don't have any way to address the problem. `log_info` looks a better fit here (and, probably, narrow the category to `scc+deoptimization`). ------------- Marked as reviewed by vlivanov (Committer). PR Review: https://git.openjdk.org/leyden/pull/38#pullrequestreview-2636223983 PR Review Comment: https://git.openjdk.org/leyden/pull/38#discussion_r1967168143 From shade at openjdk.org Mon Feb 24 10:06:36 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 24 Feb 2025 10:06:36 GMT Subject: RFR: 8349814: [leyden] Reduce uncommon traps in preload code [v4] In-Reply-To: References: Message-ID: > Preload code is the C2 code we load very early, before it gets substituted by more advanced C2 code. We are seeing lots of uncommon traps from the preloaded code, though, which invalidates it too early. We can do precompile code without uncommon traps to alleviate this. > > Additional testing: > - [x] Ad-hoc perf tests (see comment below) > - [x] Linux x86_64 server fastdebug, `runtime/cds` Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains five additional commits since the last revision: - Demote to info - Merge branch 'premain' into JDK-8349814-preload-avoid-uncommon-traps - Shuffle things around to capture more cases - Comment - Fix ------------- Changes: - all: https://git.openjdk.org/leyden/pull/38/files - new: https://git.openjdk.org/leyden/pull/38/files/de15c2cf..bc4e825b Webrevs: - full: https://webrevs.openjdk.org/?repo=leyden&pr=38&range=03 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=38&range=02-03 Stats: 18507 lines in 956 files changed: 12557 ins; 2819 del; 3131 mod Patch: https://git.openjdk.org/leyden/pull/38.diff Fetch: git fetch https://git.openjdk.org/leyden.git pull/38/head:pull/38 PR: https://git.openjdk.org/leyden/pull/38 From shade at openjdk.org Mon Feb 24 10:06:36 2025 From: shade at openjdk.org (Aleksey Shipilev) Date: Mon, 24 Feb 2025 10:06:36 GMT Subject: RFR: 8349814: [leyden] Reduce uncommon traps in preload code [v3] In-Reply-To: <_ohU-P_NgdMUhiz9eNlyJNUqra1y1CzOmxboGGrzeis=.d44b21be-3489-40a6-b29e-087b814964c7@github.com> References: <_ohU-P_NgdMUhiz9eNlyJNUqra1y1CzOmxboGGrzeis=.d44b21be-3489-40a6-b29e-087b814964c7@github.com> Message-ID: On Mon, 24 Feb 2025 08:03:47 GMT, Vladimir Ivanov wrote: >> Aleksey Shipilev has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains three commits: >> >> - Shuffle things around to capture more cases >> - Comment >> - Fix > > src/hotspot/share/runtime/deoptimization.cpp line 2134: > >> 2132: // Compiler logs all uncommon traps with -Xlog:scc. That log is noisy, and some traps may be >> 2133: // legitimate. Here, we log the problems that really caused the deopts at runtime. >> 2134: log_warning(deoptimization)("In preload code: reason=%s action=%s method=%s", > > Does it warrant a warning though? It can become quite noisy and users don't have any way to address the problem. `log_info` looks a better fit here (and, probably, narrow the category to `scc+deoptimization`). Doing these as `warnings` are my habit when doing high-perf prototypes. But yeah, we can do `info` instead, and I'll just enable the logging in my perf scripts. ------------- PR Review Comment: https://git.openjdk.org/leyden/pull/38#discussion_r1967328814 From duke at openjdk.org Mon Feb 24 18:38:11 2025 From: duke at openjdk.org (duke) Date: Mon, 24 Feb 2025 18:38:11 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v5] In-Reply-To: <1CDhT56TpZELvE8RL89YLmlBeaQa27yBfPe0O6E3jPU=.90c8cc08-5942-47ec-8680-c55c5a847e86@github.com> References: <1CDhT56TpZELvE8RL89YLmlBeaQa27yBfPe0O6E3jPU=.90c8cc08-5942-47ec-8680-c55c5a847e86@github.com> Message-ID: On Fri, 21 Feb 2025 16:44:27 GMT, Mat Carter wrote: >> Add support to the AOT cache for References (soft, weak and phantom) >> Remove the workarounds that were added because References weren't supported >> >> Confirmed from logs that References are stored in the cache correctly >> >> All demos run successfully on osx > > Mat Carter has updated the pull request incrementally with one additional commit since the last revision: > > remove a whitespace @macarte Your change (at version 68fafff84b2f9dda95e161b6d6f52ae4106b4871) is now ready to be sponsored by a Committer. ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2679330308 From iklam at openjdk.org Mon Feb 24 19:55:03 2025 From: iklam at openjdk.org (Ioi Lam) Date: Mon, 24 Feb 2025 19:55:03 GMT Subject: git: openjdk/leyden: premain: 8341587: [premain] Support Soft/Weak Reference in AOT cache Message-ID: <253cab1a-778d-4bec-ab08-832bd2c424b2@openjdk.org> Changeset: 4ca75d15 Branch: premain Author: Mat Carter Committer: Ioi Lam Date: 2025-02-24 19:53:47 +0000 URL: https://git.openjdk.org/leyden/commit/4ca75d156519596e23abc8a312496b7c2f0e0ca5 8341587: [premain] Support Soft/Weak Reference in AOT cache Reviewed-by: iklam ! src/hotspot/share/cds/aotClassInitializer.cpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/java.base/share/classes/java/lang/invoke/LambdaFormEditor.java ! src/java.base/share/classes/java/lang/invoke/MethodHandleNatives.java ! src/java.base/share/classes/java/lang/invoke/MethodType.java ! src/java.base/share/classes/java/lang/invoke/MethodTypeForm.java ! src/java.base/share/classes/java/lang/ref/Reference.java From macarte at openjdk.org Mon Feb 24 19:56:27 2025 From: macarte at openjdk.org (Mat Carter) Date: Mon, 24 Feb 2025 19:56:27 GMT Subject: Integrated: 8341587: [premain] Support Soft/Weak Reference in AOT cache In-Reply-To: References: Message-ID: On Wed, 12 Feb 2025 22:16:04 GMT, Mat Carter wrote: > Add support to the AOT cache for References (soft, weak and phantom) > Remove the workarounds that were added because References weren't supported > > Confirmed from logs that References are stored in the cache correctly > > All demos run successfully on osx This pull request has now been integrated. Changeset: 4ca75d15 Author: Mat Carter Committer: Ioi Lam URL: https://git.openjdk.org/leyden/commit/4ca75d156519596e23abc8a312496b7c2f0e0ca5 Stats: 135 lines in 9 files changed: 7 ins; 116 del; 12 mod 8341587: [premain] Support Soft/Weak Reference in AOT cache Reviewed-by: iklam ------------- PR: https://git.openjdk.org/leyden/pull/41 From liach at openjdk.org Mon Feb 24 22:25:05 2025 From: liach at openjdk.org (Chen Liang) Date: Mon, 24 Feb 2025 22:25:05 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v2] In-Reply-To: References: <6Gt8iByKGz27UR2a9gELj3OpopeY6EjlxPxOe2A2M_U=.e1bb6000-fc37-41fd-9645-e8838b2aeefb@github.com> Message-ID: On Sat, 22 Feb 2025 02:11:09 GMT, Ioi Lam wrote: >>> Is this a new requirement, or did I perform a bad git operation somehow? I didn't have a problem with my last PR >>> >>> image >> >> I just sync'd my premain with leyden/premain and merged the changes into my branch > > I tested on top of the latest premain repo and all Leyden tests passed. @macarte I think this PR is ready to be integrated. @iklam How soon can this be upstreamed? I think I might be working on MH recently and I hope we can simplify the cache and avoid conflicts down the road by a quick upstream to mainline JDK. ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2679796525 From iklam at openjdk.org Tue Feb 25 03:56:08 2025 From: iklam at openjdk.org (Ioi Lam) Date: Tue, 25 Feb 2025 03:56:08 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v2] In-Reply-To: References: <6Gt8iByKGz27UR2a9gELj3OpopeY6EjlxPxOe2A2M_U=.e1bb6000-fc37-41fd-9645-e8838b2aeefb@github.com> Message-ID: On Sat, 22 Feb 2025 02:11:09 GMT, Ioi Lam wrote: >>> Is this a new requirement, or did I perform a bad git operation somehow? I didn't have a problem with my last PR >>> >>> image >> >> I just sync'd my premain with leyden/premain and merged the changes into my branch > > I tested on top of the latest premain repo and all Leyden tests passed. @macarte I think this PR is ready to be integrated. > @iklam How soon can this be upstreamed? I think I might be working on MH recently and I hope we can simplify the cache and avoid conflicts down the road by a quick upstream to mainline JDK. I think this change can be upstreamed to the mainline. @macarte, do you want to create a PR for the mainline? I can help run it through our testing pipeline, as we need to do more testing for mainline changes. ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2680372408 From iklam at openjdk.org Tue Feb 25 16:54:41 2025 From: iklam at openjdk.org (Ioi Lam) Date: Tue, 25 Feb 2025 16:54:41 GMT Subject: git: openjdk/leyden: premain: 57 new changesets Message-ID: Changeset: 04659a40 Branch: premain Author: SendaoYan Date: 2025-02-19 01:30:16 +0000 URL: https://git.openjdk.org/leyden/commit/04659a40736610164855ac161120e63fcd46fe31 8350197: [UBSAN] Node::dump_idx reported float-cast-overflow Reviewed-by: chagedorn ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/opto/node.cpp Changeset: 4de92a40 Branch: premain Author: Prasanta Sadhukhan Date: 2025-02-19 02:19:27 +0000 URL: https://git.openjdk.org/leyden/commit/4de92a40d0750a2e6f72eb675d900f1129718d39 8350224: Test javax/swing/JComboBox/TestComboBoxComponentRendering.java fails in ubuntu 23.x and later Reviewed-by: aivanov, azvegint ! test/jdk/ProblemList.txt ! test/jdk/javax/swing/JComboBox/TestComboBoxComponentRendering.java Changeset: 9042aa82 Branch: premain Author: Christian Stein Date: 2025-02-19 06:38:39 +0000 URL: https://git.openjdk.org/leyden/commit/9042aa82a890b0f0348ac8127dbd3268f2620346 8339238: Update to use jtreg 7.5.1 Reviewed-by: erikj, jpai, rriggs, iris ! make/autoconf/lib-tests.m4 ! make/conf/github-actions.conf ! make/conf/jib-profiles.js ! test/docs/TEST.ROOT ! test/hotspot/jtreg/TEST.ROOT ! test/jaxp/TEST.ROOT ! test/jdk/TEST.ROOT ! test/langtools/TEST.ROOT ! test/lib-test/TEST.ROOT Changeset: 0ef1c409 Branch: premain Author: Roberto Casta?eda Lozano Date: 2025-02-19 09:17:27 +0000 URL: https://git.openjdk.org/leyden/commit/0ef1c40991e703592fc79325bda1a6d2fc6caf4e 8350006: IGV: show memory slices as type information Reviewed-by: dlunden, chagedorn, dfenacci ! src/hotspot/share/opto/idealGraphPrinter.cpp ! src/hotspot/share/opto/idealGraphPrinter.hpp ! src/utils/IdealGraphVisualizer/ServerCompiler/src/main/resources/com/sun/hotspot/igv/servercompiler/filters/showTypes.filter Changeset: d13fd573 Branch: premain Author: Aleksey Shipilev Date: 2025-02-19 11:02:14 +0000 URL: https://git.openjdk.org/leyden/commit/d13fd5738f8a3d4b4009c2e15cfd967332d97bbd 8350211: CTW: Attempt to preload all classes in constant pool Reviewed-by: vlivanov, chagedorn ! test/hotspot/jtreg/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java Changeset: 79db2d41 Branch: premain Author: Aleksey Shipilev Date: 2025-02-19 11:33:57 +0000 URL: https://git.openjdk.org/leyden/commit/79db2d4186eb2af827295581464be8602ac95f98 8350159: compiler/tiered/Level2RecompilationTest.java fails after JDK-8349915 Reviewed-by: kvn, chagedorn ! src/hotspot/share/compiler/compilationPolicy.cpp ! test/hotspot/jtreg/ProblemList.txt Changeset: 2353f3e2 Branch: premain Author: Aleksey Shipilev Date: 2025-02-19 11:35:00 +0000 URL: https://git.openjdk.org/leyden/commit/2353f3e2f18ccaa972ee7a292d5a45035c647881 8350210: CTW: Use stackless exceptions Reviewed-by: kvn, chagedorn ! test/hotspot/jtreg/testlibrary/ctw/src/sun/hotspot/tools/ctw/CtwRunner.java Changeset: 59810ad7 Branch: premain Author: Matthias Baesken Date: 2025-02-19 12:14:04 +0000 URL: https://git.openjdk.org/leyden/commit/59810ad745b28f50d287fa8db650c3f1924791d9 8350201: Out of bounds access on Linux aarch64 in os::print_register_info Reviewed-by: dholmes, mdoerr ! src/hotspot/os_cpu/aix_ppc/os_aix_ppc.cpp ! src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.cpp ! src/hotspot/os_cpu/linux_ppc/os_linux_ppc.cpp Changeset: 014701a0 Branch: premain Author: Alexey Ivanov Date: 2025-02-19 12:22:51 +0000 URL: https://git.openjdk.org/leyden/commit/014701a09b23d21f57edb5b085820532804475bd 8350260: Improve HTML instruction formatting in PassFailJFrame Reviewed-by: kizune, azvegint, abhiscxk ! test/jdk/java/awt/regtesthelpers/PassFailJFrame.java Changeset: 577ff98a Branch: premain Author: Sean Mullan Date: 2025-02-19 13:18:20 +0000 URL: https://git.openjdk.org/leyden/commit/577ff98a6733a99ea49510f15d631beff39c34a5 8347946: Add API note that caller should validate/trust signers to the getCertificates and getCodeSigners methods of JarEntry and JarURLConnection Reviewed-by: lancea, jpai ! src/java.base/share/classes/java/net/JarURLConnection.java ! src/java.base/share/classes/java/util/jar/JarEntry.java ! src/java.base/share/classes/java/util/jar/JarFile.java Changeset: c6e47fd5 Branch: premain Author: Albert Mingkun Yang Date: 2025-02-19 14:15:16 +0000 URL: https://git.openjdk.org/leyden/commit/c6e47fd5812997e3428249be1c77c60e7b05a5df 8348171: Refactor GenerationCounters and its subclasses Co-authored-by: Thomas Schatzl Reviewed-by: gli, tschatzl, zgu ! src/hotspot/share/gc/epsilon/epsilonMonitoringSupport.cpp ! src/hotspot/share/gc/epsilon/epsilonMonitoringSupport.hpp ! src/hotspot/share/gc/g1/g1MonitoringSupport.cpp ! src/hotspot/share/gc/g1/g1MonitoringSupport.hpp - src/hotspot/share/gc/parallel/psGenerationCounters.cpp - src/hotspot/share/gc/parallel/psGenerationCounters.hpp ! src/hotspot/share/gc/parallel/psOldGen.cpp ! src/hotspot/share/gc/parallel/psOldGen.hpp ! src/hotspot/share/gc/parallel/psYoungGen.cpp ! src/hotspot/share/gc/parallel/psYoungGen.hpp ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/tenuredGeneration.cpp ! src/hotspot/share/gc/shared/generationCounters.cpp ! src/hotspot/share/gc/shared/generationCounters.hpp ! src/hotspot/share/gc/shenandoah/shenandoahMonitoringSupport.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMonitoringSupport.hpp ! src/hotspot/share/gc/z/zServiceability.cpp Changeset: efbad00c Branch: premain Author: Ivan Walulya Date: 2025-02-19 14:27:33 +0000 URL: https://git.openjdk.org/leyden/commit/efbad00c4d7931177ccc5e9bce3b30dfbac94010 8349688: G1: Wrong initial optional region index when selecting candidates from retained regions Reviewed-by: tschatzl, ayang ! src/hotspot/share/gc/g1/g1CollectionSet.cpp Changeset: 70a6c0b7 Branch: premain Author: konanki sreenath Committer: Weijun Wang Date: 2025-02-19 16:47:54 +0000 URL: https://git.openjdk.org/leyden/commit/70a6c0b7ac952eebdffa1d64399cd0ee1efec1f6 8346094: Harden X509CertImpl.getExtensionValue for NPE cases Reviewed-by: coffeys, weijun ! src/java.base/share/classes/sun/security/x509/X509CertImpl.java ! test/jdk/sun/security/util/HostnameChecker/TestHostnameChecker.java + test/jdk/sun/security/x509/X509CertImpl/CertExtensions.java Changeset: 3487f8cb Branch: premain Author: Alexey Semenyuk Date: 2025-02-19 17:08:01 +0000 URL: https://git.openjdk.org/leyden/commit/3487f8cbd55b06d332d897a010ae8eb371dd4956 8350102: Decouple jpackage test-lib Executor.Result and Executor classes Reviewed-by: almatvee ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Executor.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/JPackageCommand.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/WindowsHelper.java Changeset: 76319845 Branch: premain Author: Matias Saavedra Silva Date: 2025-02-19 17:26:41 +0000 URL: https://git.openjdk.org/leyden/commit/76319845255d5f71acb2f88e684ba788bdadfa93 8349923: Refactor StackMapTable constructor and StackMapReader Reviewed-by: coleenp, dholmes ! src/hotspot/share/classfile/stackMapTable.cpp ! src/hotspot/share/classfile/stackMapTable.hpp ! src/hotspot/share/classfile/verifier.cpp Changeset: 7734f8ed Branch: premain Author: Mikhail Yankelevich Committer: Weijun Wang Date: 2025-02-19 18:56:26 +0000 URL: https://git.openjdk.org/leyden/commit/7734f8ed13f04ba01258b4fbe18a3d9b66f7fc7a 8349664: HEX dump should always use ASCII or ISO_8859_1 Reviewed-by: weijun ! src/java.base/share/classes/sun/security/util/HexDumpEncoder.java + test/jdk/sun/security/util/HexDumpEncoderTests.java Changeset: 4e60c2d9 Branch: premain Author: Joe Wang Date: 2025-02-19 19:36:30 +0000 URL: https://git.openjdk.org/leyden/commit/4e60c2d937fca8170b356f36e72b271104130c40 8349699: XSL transform fails with certain UTF-8 characters on 1024 byte boundaries Reviewed-by: lancea, naoto ! src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/ToStream.java ! test/jaxp/javax/xml/jaxp/unittest/transform/JDK8207760.java Changeset: 4fb70c79 Branch: premain Author: Chris Plummer Date: 2025-02-19 19:58:11 +0000 URL: https://git.openjdk.org/leyden/commit/4fb70c79c1383507bd42cd7f569cbde28393a2b8 8229012: When single stepping, the debug agent can cause the thread to remain in interpreter mode after single stepping completes Reviewed-by: kevinw, sspitsyn ! src/jdk.jdwp.agent/share/native/libjdwp/stepControl.c + test/jdk/com/sun/jdi/SingleStepCompilationTest.java Changeset: 92efab90 Branch: premain Author: Boris Ulasevich Date: 2025-02-19 21:02:27 +0000 URL: https://git.openjdk.org/leyden/commit/92efab90db24a76cc28fc1ae1db870a0dd670266 8350344: Cross-build failure: _vptr name conflict Reviewed-by: kvn ! src/hotspot/share/code/codeBlob.cpp ! src/hotspot/share/code/codeBlob.hpp ! src/hotspot/share/code/nmethod.hpp Changeset: 3ebed783 Branch: premain Author: Nicole Xu Committer: Hao Sun Date: 2025-02-20 01:33:58 +0000 URL: https://git.openjdk.org/leyden/commit/3ebed78328bd64d2e18369d63d6ea323b87a7b24 8349943: [JMH] Use jvmArgs consistently Reviewed-by: syan, redestad, haosun ! test/micro/org/openjdk/bench/java/lang/foreign/CallByRefHighArity.java ! test/micro/org/openjdk/bench/java/lang/foreign/LoopOverRandom.java ! test/micro/org/openjdk/bench/java/lang/foreign/SegmentOfBuffer.java ! test/micro/org/openjdk/bench/java/security/MLDSA.java ! test/micro/org/openjdk/bench/java/security/MLKEMBench.java ! test/micro/org/openjdk/bench/javax/crypto/full/AESBench.java ! test/micro/org/openjdk/bench/jdk/incubator/vector/VectorMultiplyOptBenchmark.java ! test/micro/org/openjdk/bench/jdk/incubator/vector/VectorXXH3HashingBenchmark.java ! test/micro/org/openjdk/bench/vm/compiler/MergeStores.java Changeset: 0131c1bf Branch: premain Author: Ioi Lam Date: 2025-02-20 02:13:41 +0000 URL: https://git.openjdk.org/leyden/commit/0131c1bfd8ccfdf4f3d73cddfc2a87e2a6e99581 8349953: Avoid editing AOTConfiguration file in "make test JTREG=AOT_JDK=true" Reviewed-by: erikj, ccheung ! make/Main.gmk ! make/RunTests.gmk + make/test/BuildTestSetupAOT.gmk ! src/hotspot/share/cds/classListParser.cpp + test/setup_aot/TestSetupAOT.java Changeset: 00d4e4a9 Branch: premain Author: SendaoYan Date: 2025-02-20 02:51:24 +0000 URL: https://git.openjdk.org/leyden/commit/00d4e4a9710f89506f36156c24b0f3c5412971fa 8350051: [JMH] Several tests fails NPE Reviewed-by: erikj, redestad ! make/test/BuildMicrobenchmark.gmk ! test/micro/org/openjdk/bench/javax/xml/AbstractXMLMicro.java Changeset: 26bf445f Branch: premain Author: SendaoYan Date: 2025-02-20 07:24:51 +0000 URL: https://git.openjdk.org/leyden/commit/26bf445f4726f1936a0a4cbaf1424c5235424bfb 8350049: [JMH] Float16OperationsBenchmark fails java.lang.NoClassDefFoundError Reviewed-by: jbhateja ! test/micro/org/openjdk/bench/jdk/incubator/vector/Float16OperationsBenchmark.java Changeset: c5c91a82 Branch: premain Author: Amit Kumar Date: 2025-02-20 08:53:19 +0000 URL: https://git.openjdk.org/leyden/commit/c5c91a82931d8bd3aa4dc1568162097ef4b66ce0 8345285: [s390x] test failures: foreign/normalize/TestNormalize.java with C2 Reviewed-by: mdoerr, aph ! src/hotspot/cpu/s390/abstractInterpreter_s390.cpp Changeset: 0662e39a Branch: premain Author: Matthias Baesken Date: 2025-02-20 08:58:18 +0000 URL: https://git.openjdk.org/leyden/commit/0662e39a6ef722f6e09383566648c794a47ebabe 8350267: Set mtune and mcpu settings in JDK native lib compilation on Linux ppc64(le) Reviewed-by: mdoerr, asteiner, erikj ! make/autoconf/flags-cflags.m4 Changeset: 86d06162 Branch: premain Author: Hao Sun Date: 2025-02-20 09:03:53 +0000 URL: https://git.openjdk.org/leyden/commit/86d0616276c0a8d60c3b7ff79ade6c83ff0c72a2 8350303: ARM32: StubCodeGenerator::verify_stub(StubGenStubId) failed after JDK-8343767 Reviewed-by: shade, adinn ! src/hotspot/share/runtime/stubDeclarations.hpp Changeset: 1e87ff01 Branch: premain Author: Abhishek Kumar Date: 2025-02-20 09:17:40 +0000 URL: https://git.openjdk.org/leyden/commit/1e87ff01994df16df7de331040fc5d7a4a85f630 8348936: [Accessibility,macOS,VoiceOver] VoiceOver doesn't announce untick on toggling the checkbox with "space" key on macOS 8345728: [Accessibility,macOS,Screen Magnifier]: JCheckbox unchecked state does not magnify but works for checked state Reviewed-by: aivanov, kizune, dnguyen, asemenov ! src/java.desktop/macosx/classes/sun/lwawt/macosx/CAccessible.java + test/jdk/javax/accessibility/TestJCheckBoxToggleAccessibility.java Changeset: 735805d9 Branch: premain Author: Martin Doerr Date: 2025-02-20 12:03:08 +0000 URL: https://git.openjdk.org/leyden/commit/735805d9259037ae594eb4f75e96860d43feea5d 8349727: [PPC] C1: Improve Class.isInstance intrinsic Reviewed-by: rrich, varadam ! src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.cpp ! src/hotspot/cpu/ppc/c1_LIRGenerator_ppc.cpp ! src/hotspot/cpu/ppc/c1_Runtime1_ppc.cpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.cpp Changeset: 960ad211 Branch: premain Author: Jiangli Zhou Date: 2025-02-20 15:47:54 +0000 URL: https://git.openjdk.org/leyden/commit/960ad211867d65a993b2fc4e6dafa8cea9827b3f 8349620: Add VMProps for static JDK Reviewed-by: alanb, manc ! src/hotspot/share/prims/whitebox.cpp ! test/hotspot/jtreg/TEST.ROOT ! test/hotspot/jtreg/runtime/modules/ModulesSymLink.java ! test/jdk/TEST.ROOT ! test/jtreg-ext/requires/VMProps.java ! test/lib/jdk/test/whitebox/WhiteBox.java Changeset: 10bf48a6 Branch: premain Author: Johan Sj?len Date: 2025-02-20 15:50:24 +0000 URL: https://git.openjdk.org/leyden/commit/10bf48a6b0b796b48cdca15250e1ee7e7be83c82 8350214: Test gtest/AsyncLogGtest.java fails after JDK-8349755 Reviewed-by: aboldtch, dholmes ! src/hotspot/share/logging/logAsyncWriter.cpp ! src/hotspot/share/logging/logAsyncWriter.hpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/logging/logTagSet.cpp ! src/hotspot/share/runtime/globals.hpp ! test/hotspot/jtreg/runtime/logging/AsyncDeathTest.java Changeset: 53db5764 Branch: premain Author: Nizar Benalla Date: 2025-02-20 15:53:05 +0000 URL: https://git.openjdk.org/leyden/commit/53db57648a09c4c380064eea11fcdb680011d741 8350137: After JDK-8348975, Linux builds contain man pages for windows only tools Reviewed-by: erikj ! make/Docs.gmk ! make/common/Modules.gmk Changeset: 16873732 Branch: premain Author: Erik Joelsson Date: 2025-02-20 17:46:06 +0000 URL: https://git.openjdk.org/leyden/commit/16873732a752d79c3bf1bc450c63839997986d9e 8349933: Mixing of includes and snippets stack causes the wrong -post snippet to be included Reviewed-by: ihse ! make/common/MakeIncludeEnd.gmk ! make/common/MakeIncludeStart.gmk ! make/common/MakeSnippetEnd.gmk ! make/common/MakeSnippetStart.gmk Changeset: 1eb0db37 Branch: premain Author: Leonid Mesnik Date: 2025-02-20 18:00:33 +0000 URL: https://git.openjdk.org/leyden/commit/1eb0db37608ae1dd05accc1e22c57d76fa2c72ce 8350151: Support requires property to filter tests incompatible with --enable-preview Reviewed-by: alanb, rriggs ! test/hotspot/jtreg/TEST.ROOT ! test/jdk/TEST.ROOT ! test/jdk/java/lang/invoke/defineHiddenClass/PreviewHiddenClass.java ! test/jtreg-ext/requires/VMProps.java ! test/langtools/TEST.ROOT Changeset: f979f727 Branch: premain Author: Fernando Guallini Committer: Rajan Halade Date: 2025-02-20 18:52:30 +0000 URL: https://git.openjdk.org/leyden/commit/f979f727b6137be9a3f85baed4fbfdd785970044 8337723: Remove redundant tests from com/sun/security/sasl/gsskerb Reviewed-by: rhalade ! test/jdk/ProblemList.txt ! test/jdk/TEST.groups - test/jdk/com/sun/security/sasl/gsskerb/AuthOnly.java - test/jdk/com/sun/security/sasl/gsskerb/ConfSecurityLayer.java - test/jdk/com/sun/security/sasl/gsskerb/NoSecurityLayer.java - test/jdk/com/sun/security/sasl/gsskerb/PropertiesFileCallbackHandler.java - test/jdk/com/sun/security/sasl/gsskerb/gsseg_jaas.conf - test/jdk/com/sun/security/sasl/gsskerb/log.properties - test/jdk/com/sun/security/sasl/gsskerb/run-conf-wjaas.csh - test/jdk/com/sun/security/sasl/gsskerb/run-nosec-wjaas.csh - test/jdk/com/sun/security/sasl/gsskerb/runwjaas.csh ! test/jdk/sun/security/krb5/auto/SaslBasic.java Changeset: 16033ea7 Branch: premain Author: Fernando Guallini Committer: Rajan Halade Date: 2025-02-20 18:52:57 +0000 URL: https://git.openjdk.org/leyden/commit/16033ea79a01b27a7f5cbb31d64da0e80afc7dc3 8342238: Test javax/crypto/CryptoPermissions/InconsistentEntries.java writes files in tested JDK dir Reviewed-by: jnimeh, rhalade ! test/jdk/javax/crypto/CryptoPermissions/InconsistentEntries.java Changeset: c73fead5 Branch: premain Author: Hamlin Li Date: 2025-02-21 09:48:54 +0000 URL: https://git.openjdk.org/leyden/commit/c73fead5caea8008586b31a5009c64011637b8cc 8350383: Test: add more test case for string compare (UL case) Reviewed-by: fyang ! test/hotspot/jtreg/compiler/intrinsics/string/TestStringIntrinsics.java Changeset: 1b6281d9 Branch: premain Author: Hamlin Li Date: 2025-02-21 10:25:50 +0000 URL: https://git.openjdk.org/leyden/commit/1b6281d98cf0e7c5435c563bfedd6f07b79bfa62 8321003: RISC-V: C2 MulReductionVI 8321004: RISC-V: C2 MulReductionVL Reviewed-by: fyang, rehn ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.hpp ! src/hotspot/cpu/riscv/riscv_v.ad ! test/hotspot/jtreg/compiler/loopopts/superword/ProdRed_Int.java ! test/hotspot/jtreg/compiler/loopopts/superword/RedTest_int.java ! test/hotspot/jtreg/compiler/loopopts/superword/RedTest_long.java Changeset: dfcd0df6 Branch: premain Author: Volkan Yazici Committer: Daniel Fuchs Date: 2025-02-21 10:26:55 +0000 URL: https://git.openjdk.org/leyden/commit/dfcd0df60c60cf89dc01682264a573ad39e61a17 8350019: HttpClient: DelegatingExecutor should resort to the fallback executor only on RejectedExecutionException Reviewed-by: dfuchs ! src/java.net.http/share/classes/jdk/internal/net/http/HttpClientImpl.java + test/jdk/java/net/httpclient/whitebox/DelegatingExecutorTestDriver.java + test/jdk/java/net/httpclient/whitebox/java.net.http/jdk/internal/net/http/DelegatingExecutorTest.java Changeset: 24b55736 Branch: premain Author: Matias Saavedra Silva Date: 2025-02-21 16:17:31 +0000 URL: https://git.openjdk.org/leyden/commit/24b557361a481d7f38f8016506573623b91bd8c8 8350444: Check for verifer error in StackMapReader::check_offset() Reviewed-by: coleenp, dholmes ! src/hotspot/share/classfile/stackMapTable.cpp Changeset: bd8ad309 Branch: premain Author: Xiaolong Peng Committer: Aleksey Shipilev Date: 2025-02-21 16:39:17 +0000 URL: https://git.openjdk.org/leyden/commit/bd8ad309b59bceb3073a8d6411cca74e73508885 8350285: Shenandoah: Regression caused by ShenandoahLock under extreme contention Reviewed-by: shade, kdnilsen ! src/hotspot/share/gc/shenandoah/shenandoahLock.cpp ! src/hotspot/share/gc/shenandoah/shenandoahLock.hpp Changeset: b45c32cd Branch: premain Author: Chris Plummer Date: 2025-02-21 19:09:38 +0000 URL: https://git.openjdk.org/leyden/commit/b45c32cd4fb55fac4fc5161b9cd76415c69b203b 8350287: Cleanup SA's support for CodeBlob subclasses Reviewed-by: kvn, sspitsyn - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/AdapterBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/BufferBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/CodeBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/CodeCache.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/DeoptimizationBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/ExceptionBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/MethodHandlesAdapterBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/RuntimeBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/RuntimeStub.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/SafepointBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/SingletonBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/UncommonTrapBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/UpcallStub.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/VtableBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/PStack.java Changeset: 9d9d7a17 Branch: premain Author: Jamil Nimeh Date: 2025-02-21 20:30:02 +0000 URL: https://git.openjdk.org/leyden/commit/9d9d7a17d3d1a8971712ef1b22e919012350db6f 8349759: Add unit test for CertificateBuilder and SimpleOCSPServer test utilities Reviewed-by: mullan + test/lib-test/jdk/test/lib/security/CPVAlgTestWithOCSP.java ! test/lib/jdk/test/lib/security/CertificateBuilder.java ! test/lib/jdk/test/lib/security/SimpleOCSPServer.java Changeset: 825ab20b Branch: premain Author: Fernando Guallini Date: 2025-02-21 21:06:54 +0000 URL: https://git.openjdk.org/leyden/commit/825ab20ba99b1f1127dd94b87ae56020d1831529 8350456: Test javax/crypto/CryptoPermissions/InconsistentEntries.java crashed: EXCEPTION_ACCESS_VIOLATION Reviewed-by: rhalade, jnimeh ! test/jdk/javax/crypto/CryptoPermissions/InconsistentEntries.java ! test/lib/jdk/test/lib/util/FileUtils.java Changeset: 25322aae Branch: premain Author: Dmitry Chuyko Date: 2025-02-21 21:43:54 +0000 URL: https://git.openjdk.org/leyden/commit/25322aae8e224680db376098d2e45f26cf3334a0 8350258: AArch64: Client build fails after JDK-8347917 Reviewed-by: dlong, kvn ! src/hotspot/cpu/aarch64/frame_aarch64.cpp Changeset: 5cbd9d1f Branch: premain Author: SendaoYan Date: 2025-02-22 03:11:42 +0000 URL: https://git.openjdk.org/leyden/commit/5cbd9d1fe19b6d9516233cd1ed8d3ba340b7a1e6 8349959: Test CR6740048.java passes unexpectedly missing CR6740048.xsd Reviewed-by: joehw ! test/jaxp/javax/xml/jaxp/unittest/validation/CR6740048.java Changeset: a8916308 Branch: premain Author: Fei Yang Date: 2025-02-22 10:16:51 +0000 URL: https://git.openjdk.org/leyden/commit/a891630817844c8c42994da3b3110925ca4595a0 8350480: RISC-V: Relax assertion about registers in C2_MacroAssembler::minmax_fp Reviewed-by: mli, fjiang ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp Changeset: 05b48129 Branch: premain Author: Jiangli Zhou Date: 2025-02-23 02:35:57 +0000 URL: https://git.openjdk.org/leyden/commit/05b481294cbf2ad7c8d917b8e039e7aebcf91104 8350041: Skip test/jdk/java/lang/String/nativeEncoding/StringPlatformChars.java on static JDK Reviewed-by: alanb ! test/jdk/java/lang/String/nativeEncoding/StringPlatformChars.java Changeset: 0795d11b Branch: premain Author: David Holmes Date: 2025-02-24 03:13:55 +0000 URL: https://git.openjdk.org/leyden/commit/0795d11bfc0c6640ed7e9f05a17eb2a733d88bc0 8350464: The flags to set the native priority for the VMThread and Java threads need a broader range Reviewed-by: stuefe, shade ! src/hotspot/share/runtime/globals.hpp Changeset: 302bed05 Branch: premain Author: Ao Qi Committer: David Holmes Date: 2025-02-24 03:17:56 +0000 URL: https://git.openjdk.org/leyden/commit/302bed055c3b4881f97c584d5953273b9dbc2969 8350499: Minimal build fails with slowdebug builds Reviewed-by: kbarrett, dholmes ! src/hotspot/share/classfile/verifier.cpp Changeset: a5c9a4db Branch: premain Author: Christian Hagedorn Date: 2025-02-24 07:28:05 +0000 URL: https://git.openjdk.org/leyden/commit/a5c9a4dbde410c687f05951b8f1d3cf72fcaedc0 8349032: C2: Parse Predicate refactoring in Loop Unswitching broke fix for JDK-8290850 Reviewed-by: kvn, thartmann ! src/hotspot/share/opto/loopPredicate.cpp ! src/hotspot/share/opto/loopnode.hpp ! src/hotspot/share/opto/predicates.cpp ! src/hotspot/share/opto/predicates.hpp + test/hotspot/jtreg/compiler/predicates/TestParsePredicateUCTWithPhi.java Changeset: f755fadc Branch: premain Author: Per Minborg Date: 2025-02-24 07:38:29 +0000 URL: https://git.openjdk.org/leyden/commit/f755fadc3d7fd1e09cdc2442531fa724ebb77dce 8349653: Clarify the docs for MemorySegment::reinterpret Reviewed-by: jvernee, mcimadamore ! src/java.base/share/classes/java/lang/foreign/MemorySegment.java Changeset: e410af00 Branch: premain Author: Jatin Bhateja Date: 2025-02-24 07:40:17 +0000 URL: https://git.openjdk.org/leyden/commit/e410af00e69587b86536b298b869ddc898fd9862 8342393: Promote commutative vector IR node sharing Reviewed-by: vlivanov, epeter, sviswanathan ! src/hotspot/share/opto/vectornode.cpp ! src/hotspot/share/opto/vectornode.hpp + test/hotspot/jtreg/compiler/vectorapi/VectorCommutativeOperSharingTest.java + test/micro/org/openjdk/bench/jdk/incubator/vector/VectorCommutativeOperSharingBenchmark.java Changeset: 65f79c14 Branch: premain Author: Erik ?sterlund Date: 2025-02-24 12:03:42 +0000 URL: https://git.openjdk.org/leyden/commit/65f79c145b7b1b32ed064a37ad4d2b6aca935a4c 8347335: ZGC: Use limitless mark stack memory Reviewed-by: aboldtch, iwalulya ! src/hotspot/share/gc/z/zAddressSpaceLimit.cpp ! src/hotspot/share/gc/z/zAddressSpaceLimit.hpp ! src/hotspot/share/gc/z/zArguments.cpp ! src/hotspot/share/gc/z/zBarrierSet.cpp ! src/hotspot/share/gc/z/zGeneration.cpp ! src/hotspot/share/gc/z/zGeneration.hpp ! src/hotspot/share/gc/z/zGlobals.hpp ! src/hotspot/share/gc/z/zHeap.cpp ! src/hotspot/share/gc/z/zHeap.hpp ! src/hotspot/share/gc/z/zInitialize.cpp ! src/hotspot/share/gc/z/zMark.cpp ! src/hotspot/share/gc/z/zMark.hpp ! src/hotspot/share/gc/z/zMark.inline.hpp ! src/hotspot/share/gc/z/zMarkStack.cpp ! src/hotspot/share/gc/z/zMarkStack.hpp ! src/hotspot/share/gc/z/zMarkStack.inline.hpp - src/hotspot/share/gc/z/zMarkStackAllocator.cpp - src/hotspot/share/gc/z/zMarkStackAllocator.hpp ! src/hotspot/share/gc/z/zMarkTerminate.inline.hpp + src/hotspot/share/gc/z/zMarkingSMR.cpp + src/hotspot/share/gc/z/zMarkingSMR.hpp ! src/hotspot/share/gc/z/zRemembered.cpp ! src/hotspot/share/gc/z/zStat.cpp ! src/hotspot/share/gc/z/zStat.hpp ! src/hotspot/share/gc/z/z_globals.hpp ! src/hotspot/share/runtime/arguments.cpp Changeset: ddb25691 Branch: premain Author: Calvin Cheung Date: 2025-02-24 19:54:48 +0000 URL: https://git.openjdk.org/leyden/commit/ddb256911032cd7e6fae17c342261276066d8d25 8280682: Refactor AOT code source validation checks Co-authored-by: Ioi Lam Reviewed-by: iklam, asmehra, dholmes, kvn + src/hotspot/share/cds/aotClassLocation.cpp + src/hotspot/share/cds/aotClassLocation.hpp ! src/hotspot/share/cds/archiveHeapLoader.hpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConstants.cpp ! src/hotspot/share/cds/cdsProtectionDomain.cpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/filemap.hpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/unregisteredClasses.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoader.hpp ! src/hotspot/share/classfile/classLoader.inline.hpp ! src/hotspot/share/classfile/classLoaderDataShared.cpp ! src/hotspot/share/classfile/classLoaderDataShared.hpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/classLoaderExt.hpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/memory/allocation.hpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/prims/jvmtiEnv.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/threads.cpp ! test/hotspot/jtreg/runtime/cds/appcds/BootClassPathMismatch.java ! test/hotspot/jtreg/runtime/cds/appcds/ClassPathAttr.java ! test/hotspot/jtreg/runtime/cds/appcds/CommonAppClasspath.java ! test/hotspot/jtreg/runtime/cds/appcds/NonExistClasspath.java ! test/hotspot/jtreg/runtime/cds/appcds/PrintSharedArchiveAndExit.java ! test/hotspot/jtreg/runtime/cds/appcds/SharedArchiveConsistency.java ! test/hotspot/jtreg/runtime/cds/appcds/TraceLongClasspath.java ! test/hotspot/jtreg/runtime/cds/appcds/WrongClasspath.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/ArchiveConsistency.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/WrongTopClasspath.java ! test/hotspot/jtreg/runtime/cds/appcds/jigsaw/modulepath/ModulePathAndFMG.java ! test/lib/jdk/test/lib/cds/CDSArchiveUtils.java Changeset: 39cb493c Branch: premain Author: Rajat Mahajan Date: 2025-02-24 20:21:20 +0000 URL: https://git.openjdk.org/leyden/commit/39cb493c365778a1e3a6e753b49d8664733a3e26 8348106: Catch C++ exception in Java_sun_awt_windows_WTaskbarPeer_setOverlayIcon Reviewed-by: abhiscxk, aivanov, azvegint, serb, dmarkov ! src/java.desktop/windows/native/libawt/windows/awt_Taskbar.cpp Changeset: 990d40e9 Branch: premain Author: Bradford Wetmore Date: 2025-02-24 22:57:03 +0000 URL: https://git.openjdk.org/leyden/commit/990d40e98da2ceb3261096eaa55550565af58fc1 8350476: Fix typo introduced in JDK-8350147 Reviewed-by: jnimeh, jpai ! src/java.base/share/classes/javax/crypto/KEM.java Changeset: c5d05c54 Branch: premain Author: Ioi Lam Date: 2025-02-24 22:47:07 +0000 URL: https://git.openjdk.org/leyden/commit/c5d05c54694d020e4afab0e4ebc8ec8f5b7d191a Merge branch 'master' into premain ! src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.cpp ! src/hotspot/share/asm/codeBuffer.cpp + src/hotspot/share/cds/aotClassLocation.cpp + src/hotspot/share/cds/aotClassLocation.hpp ! src/hotspot/share/cds/aotConstantPoolResolver.cpp ! src/hotspot/share/cds/archiveHeapLoader.hpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsProtectionDomain.cpp ! src/hotspot/share/cds/classListParser.cpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/filemap.hpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoader.hpp ! src/hotspot/share/classfile/classLoaderDataShared.cpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/code/nmethod.hpp ! src/hotspot/share/compiler/compilationPolicy.cpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/memory/allocation.hpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/stubDeclarations.hpp ! src/hotspot/share/runtime/threads.cpp ! test/hotspot/jtreg/ProblemList.txt ! src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.cpp ! src/hotspot/share/asm/codeBuffer.cpp ! src/hotspot/share/cds/aotClassLocation.cpp ! src/hotspot/share/cds/aotClassLocation.hpp ! src/hotspot/share/cds/aotConstantPoolResolver.cpp ! src/hotspot/share/cds/archiveHeapLoader.hpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsProtectionDomain.cpp ! src/hotspot/share/cds/classListParser.cpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/filemap.hpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoader.hpp ! src/hotspot/share/classfile/classLoaderDataShared.cpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/code/nmethod.hpp ! src/hotspot/share/compiler/compilationPolicy.cpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/memory/allocation.hpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/stubDeclarations.hpp ! src/hotspot/share/runtime/threads.cpp ! test/hotspot/jtreg/ProblemList.txt From macarte at openjdk.org Tue Feb 25 21:23:10 2025 From: macarte at openjdk.org (Mat Carter) Date: Tue, 25 Feb 2025 21:23:10 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v2] In-Reply-To: References: <6Gt8iByKGz27UR2a9gELj3OpopeY6EjlxPxOe2A2M_U=.e1bb6000-fc37-41fd-9645-e8838b2aeefb@github.com> Message-ID: On Tue, 25 Feb 2025 03:53:55 GMT, Ioi Lam wrote: > > @iklam How soon can this be upstreamed? I think I might be working on MH recently and I hope we can simplify the cache and avoid conflicts down the road by a quick upstream to mainline JDK. > > I think this change can be upstreamed to the mainline. @macarte, do you want to create a PR for the mainline? I can help run it through our testing pipeline, as we need to do more testing for mainline changes. I can create the PR for mainline, we'll need a JBS Item. One question though: this commit has no flags to disable adding WeakReferences to the cache, is this okay for tip or should we add a flag? ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2683319324 From iklam at openjdk.org Wed Feb 26 07:27:16 2025 From: iklam at openjdk.org (Ioi Lam) Date: Wed, 26 Feb 2025 07:27:16 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v2] In-Reply-To: References: <6Gt8iByKGz27UR2a9gELj3OpopeY6EjlxPxOe2A2M_U=.e1bb6000-fc37-41fd-9645-e8838b2aeefb@github.com> Message-ID: <_j8SzwA6vzhQesWoc2fYUSM0a4H5PBKHjF3x5BtWpbA=.19935c08-8bfc-497a-b436-24096bcef2b1@github.com> On Tue, 25 Feb 2025 03:53:55 GMT, Ioi Lam wrote: >> I tested on top of the latest premain repo and all Leyden tests passed. @macarte I think this PR is ready to be integrated. > >> @iklam How soon can this be upstreamed? I think I might be working on MH recently and I hope we can simplify the cache and avoid conflicts down the road by a quick upstream to mainline JDK. > > I think this change can be upstreamed to the mainline. @macarte, do you want to create a PR for the mainline? I can help run it through our testing pipeline, as we need to do more testing for mainline changes. > > > @iklam How soon can this be upstreamed? I think I might be working on MH recently and I hope we can simplify the cache and avoid conflicts down the road by a quick upstream to mainline JDK. > > > > > > I think this change can be upstreamed to the mainline. @macarte, do you want to create a PR for the mainline? I can help run it through our testing pipeline, as we need to do more testing for mainline changes. > > I can create the PR for mainline, we'll need a JBS Item. Yes, please create a new JBS issue, as the JDK-8341587 was targeted to the Leyden repo and is already marked as closed. > One question though: this commit has no flags to disable adding WeakReferences to the cache, is this okay for tip or should we add a flag? It would be too difficult to implement a switch to disable WeakReferences. To do that we would need to keep the side table and then dynamically choose between the two behaviors. In the long run, our goal is to be able to store complex data structures used by the JDK library (and even applications). It's quite common to have WeakReferences in such data structures, and we don't want to require the Java code to be modified before such data structures can be stored. BTW I think we still have a problem -- in the assembly phase, the ReferenceQueue may contain WeakReferences that are used by data structures that we don't intend to store in the AOT cache, but they may be discovered by heapShared.cpp and end up in the AOT cache. So @liach we may not be able to upstream this into the mainline yet. With a simple test, it seems like we are archiving only WeakReferences used by MethodTypes, etc. I don't see anything that we don't want, so that's so far so good: # Must use JDK from leyden/premain repo $ java -cp HelloWorld.jar -XX:AOTMode=record -XX:AOTConfiguration=hw.aotconfig HelloWorld $ java -Xlog:cds+map=trace,cds+map+oops=trace:file=cds.oops.txt:none:filesize=0 -cp HelloWorld.jar -XX:AOTMode=create -Xlog:cds -XX:AOTCache=hw.aot -XX:AOTConfiguration=hw.aotconfig $ grep -n private.*referent cds.oops.txt 452055: - private 'referent' 'Ljava/lang/Object;' @12 0x00000007ff8297f0 (0xfff052fe) java.lang.invoke.LambdaForm 524890: - private 'referent' 'Ljava/lang/Object;' @12 0x00000007ff866c10 (0xfff0cd82) java.lang.invoke.MethodType (Ljava/lang/String;)Z The WeakReferenceKey look like this: 0x00000007ff868bf0: @@ Object (0xfff0d17e) jdk.internal.util.WeakReferenceKey - klass: 'jdk/internal/util/WeakReferenceKey' 0x0000000800293578 - fields (4 words): - private 'referent' 'Ljava/lang/Object;' @12 0x00000007ff82db60 (0xfff05b6c) java.lang.invoke.MethodType ()Ljava/lang/Object; - volatile 'queue' 'Ljava/lang/ref/ReferenceQueue;' @16 0x00000007ff866988 (0xfff0cd31) java.lang.ref.ReferenceQueue - volatile 'next' 'Ljava/lang/ref/Reference;' @20 null - private transient 'discovered' 'Ljava/lang/ref/Reference;' @24 null - private final 'hashcode' 'I' @28 1335087215 (0x4f93d06f) It's queue look like this (0 items!) 0x00000007ff866988: @@ Object (0xfff0cd31) java.lang.ref.ReferenceQueue - klass: 'java/lang/ref/ReferenceQueue' 0x000000080013d000 - fields (4 words): - private volatile 'head' 'Ljava/lang/ref/Reference;' @12 null - private 'queueLength' 'J' @16 0 (0x0000000000000000) - private final 'lock' 'Ljava/lang/ref/ReferenceQueue$Lock;' @24 0x00000007ff8d8aa0 (0xfff1b154) java.lang.ref.ReferenceQueue$Lock And all the `WeakReferenceKey::next` fields are null. I wonder why. $ grep "volatile 'next'.*Reference" cds.oops.txt | wc 114 684 6384 $ grep "volatile 'next'.*Reference" cds.oops.txt | grep -v null | wc 0 0 0 So I think we need to understand this a little more before moving forward with upstreaming to mainline. ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2684148819 From liach at openjdk.org Wed Feb 26 14:10:28 2025 From: liach at openjdk.org (Chen Liang) Date: Wed, 26 Feb 2025 14:10:28 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v5] In-Reply-To: <1CDhT56TpZELvE8RL89YLmlBeaQa27yBfPe0O6E3jPU=.90c8cc08-5942-47ec-8680-c55c5a847e86@github.com> References: <1CDhT56TpZELvE8RL89YLmlBeaQa27yBfPe0O6E3jPU=.90c8cc08-5942-47ec-8680-c55c5a847e86@github.com> Message-ID: On Fri, 21 Feb 2025 16:44:27 GMT, Mat Carter wrote: >> Add support to the AOT cache for References (soft, weak and phantom) >> Remove the workarounds that were added because References weren't supported >> >> Confirmed from logs that References are stored in the cache correctly >> >> All demos run successfully on osx > > Mat Carter has updated the pull request incrementally with one additional commit since the last revision: > > remove a whitespace Thanks for this evaluation. I will just be careful when working with the cache area of Method Handles. ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2685132411 From iklam at openjdk.org Wed Feb 26 16:42:10 2025 From: iklam at openjdk.org (Ioi Lam) Date: Wed, 26 Feb 2025 16:42:10 GMT Subject: git: openjdk/leyden: premain: 27 new changesets Message-ID: Changeset: a6cc37fd Branch: premain Author: Ioi Lam Date: 2025-02-25 05:38:39 +0000 URL: https://git.openjdk.org/leyden/commit/a6cc37fdbe77ff3c1bd8e2332f67f48e3850e56b 8349888: AOTMode=create crashes with EpsilonGC Reviewed-by: shade, kvn ! src/hotspot/share/cds/classListParser.cpp + test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/LambdaInExcludedClass.java Changeset: e1081cff Branch: premain Author: SendaoYan Date: 2025-02-25 06:12:39 +0000 URL: https://git.openjdk.org/leyden/commit/e1081cffcbec6020bf4cbec9f795b59b6ec1e9ef 8348536: Remove remain SIZE_FORMAT usage after JDK-8347990 Reviewed-by: dholmes, kbarrett ! test/hotspot/gtest/metaspace/test_blocktree.cpp ! test/hotspot/gtest/metaspace/test_metaspace_misc.cpp ! test/hotspot/gtest/nmt/test_nmt_totals.cpp Changeset: ab86a135 Branch: premain Author: Adam Sotona Date: 2025-02-25 08:18:52 +0000 URL: https://git.openjdk.org/leyden/commit/ab86a13519a50c5d8a05c493594e6bda329133f4 8350548: java.lang.classfile package javadoc has errors Reviewed-by: liach ! src/java.base/share/classes/java/lang/classfile/package-info.java Changeset: d551daca Branch: premain Author: Matthias Baesken Date: 2025-02-25 08:19:56 +0000 URL: https://git.openjdk.org/leyden/commit/d551dacaef938cea0cad10047b79a0a7a26dcacb 8350103: Test containers/systemd/SystemdMemoryAwarenessTest.java fails on Linux ppc64le SLES15 SP6 Co-authored-by: Severin Gehwolf Reviewed-by: sgehwolf, asteiner ! test/hotspot/jtreg/containers/systemd/SystemdMemoryAwarenessTest.java Changeset: aa70f0ae Branch: premain Author: Jaikiran Pai Date: 2025-02-25 10:57:22 +0000 URL: https://git.openjdk.org/leyden/commit/aa70f0ae8be0bbc80e9d002bf02d0278c8e31bf8 8347348: Clarify that the HTTP server in jdk.httpserver module is not a full featured server Reviewed-by: michaelm, dfuchs ! src/jdk.httpserver/share/classes/module-info.java Changeset: a9c9f7f0 Branch: premain Author: Albert Mingkun Yang Date: 2025-02-25 11:14:20 +0000 URL: https://git.openjdk.org/leyden/commit/a9c9f7f0cbb2f2395fef08348bf867ffa8875d73 8192647: GClocker induced GCs can starve threads requiring memory leading to OOME Reviewed-by: tschatzl, iwalulya, egahlin ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.hpp ! src/hotspot/share/gc/parallel/psOldGen.cpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psVMOperations.cpp ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/serialHeap.cpp ! src/hotspot/share/gc/serial/serialHeap.hpp ! src/hotspot/share/gc/serial/serialVMOperations.cpp ! src/hotspot/share/gc/serial/tenuredGeneration.cpp ! src/hotspot/share/gc/shared/collectedHeap.cpp ! src/hotspot/share/gc/shared/gcCause.cpp ! src/hotspot/share/gc/shared/gcCause.hpp ! src/hotspot/share/gc/shared/gcLocker.cpp ! src/hotspot/share/gc/shared/gcLocker.hpp ! src/hotspot/share/gc/shared/gcLocker.inline.hpp ! src/hotspot/share/gc/shared/gcTrace.hpp ! src/hotspot/share/gc/shared/gcTraceSend.cpp ! src/hotspot/share/gc/shared/gcVMOperations.cpp ! src/hotspot/share/gc/shared/gcVMOperations.hpp ! src/hotspot/share/gc/shared/gc_globals.hpp ! src/hotspot/share/jfr/metadata/metadata.xml ! src/hotspot/share/prims/downcallLinker.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/javaThread.hpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/mutexLocker.hpp ! src/hotspot/share/runtime/safepoint.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/GCCause.java ! src/jdk.jfr/share/conf/jfr/default.jfc ! src/jdk.jfr/share/conf/jfr/profile.jfc ! test/hotspot/jtreg/ProblemList.txt - test/hotspot/jtreg/gc/stress/gclocker/TestExcessGCLockerCollections.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithParallelOld.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithSerial.java - test/jdk/jdk/jfr/event/gc/detailed/TestGCLockerEvent.java ! test/lib/jdk/test/lib/jfr/EventNames.java ! test/lib/jdk/test/whitebox/WhiteBox.java Changeset: c413549e Branch: premain Author: Coleen Phillimore Date: 2025-02-25 12:35:54 +0000 URL: https://git.openjdk.org/leyden/commit/c413549eb775f4209416c718dc9aa0748144a6b4 8349860: Make Class.isArray(), Class.isInterface() and Class.isPrimitive() non-native Reviewed-by: dlong, rriggs, vlivanov, yzheng, liach ! src/hotspot/share/c1/c1_Canonicalizer.cpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/javaClasses.inline.hpp ! src/hotspot/share/classfile/vmIntrinsics.cpp ! src/hotspot/share/classfile/vmIntrinsics.hpp ! src/hotspot/share/include/jvm.h ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/prims/jvm.cpp ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/jdk/internal/reflect/Reflection.java ! src/java.base/share/native/libjava/Class.c ! test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaType.java ! test/jdk/java/lang/reflect/AccessibleObject/ModuleSetAccessibleTest.java ! test/jdk/java/lang/reflect/AccessibleObject/TrySetAccessibleTest.java ! test/jdk/jdk/internal/reflect/Reflection/Filtering.java Changeset: 8cfebc41 Branch: premain Author: Kevin Walls Date: 2025-02-25 12:54:30 +0000 URL: https://git.openjdk.org/leyden/commit/8cfebc41dc8ec7b0d24d9c467b91de82d28b73fc 8350571: Remove mention of Tonga test suite from JMX tests Reviewed-by: cjplummer, lmesnik, sspitsyn ! test/jdk/javax/management/MBeanServer/ExceptionFactory.java ! test/jdk/javax/management/MBeanServer/ExceptionTest.java ! test/jdk/javax/management/mxbean/Utils.java ! test/jdk/javax/management/query/SupportedQueryTypesTest.java ! test/jdk/javax/management/security/Utils.java Changeset: cfeb7d6c Branch: premain Author: Matthias Baesken Date: 2025-02-25 13:30:54 +0000 URL: https://git.openjdk.org/leyden/commit/cfeb7d6c964f63184c939f6f0625c6e7f1afdc31 8350497: os::create_thread unify init thread attributes part across UNIX platforms Reviewed-by: dholmes ! src/hotspot/os/aix/os_aix.cpp ! src/hotspot/os/bsd/os_bsd.cpp Changeset: 62f39bd6 Branch: premain Author: Johan Sj?len Date: 2025-02-25 14:30:24 +0000 URL: https://git.openjdk.org/leyden/commit/62f39bd6468d1c99bb0d6af6a96972bae96a7588 8350636: Potential null-pointer dereference in MallocSiteTable::new_entry Reviewed-by: dholmes ! src/hotspot/share/nmt/mallocSiteTable.cpp Changeset: b17c0b63 Branch: premain Author: Matthias Baesken Date: 2025-02-25 14:38:19 +0000 URL: https://git.openjdk.org/leyden/commit/b17c0b63a15246967f7cb24ba6089f2ef13e900e 8350585: InlineSecondarySupersTest must be guarded on ppc64 by COMPILER2 Reviewed-by: amitkumar, mdoerr ! src/hotspot/cpu/ppc/stubGenerator_ppc.cpp Changeset: 08bc59da Branch: premain Author: Stuart Marks Date: 2025-02-25 15:18:30 +0000 URL: https://git.openjdk.org/leyden/commit/08bc59da9b66c6504a2d2712feebf37cc5eb2d3e 8138614: (spec str) StringBuffer and StringBuilder methods improperly require "new" String to be returned Reviewed-by: rgiulietti, shade, alanb, rriggs, liach ! src/java.base/share/classes/java/lang/AbstractStringBuilder.java Changeset: 50239716 Branch: premain Author: Mark Powers Date: 2025-02-25 15:21:07 +0000 URL: https://git.openjdk.org/leyden/commit/50239716403732fe8af73b4b6f006b6a4b7b22db 8267068: Incomplete @throws javadoc for various javax.crypto.spec classes Reviewed-by: valeriep, jnimeh ! src/java.base/share/classes/javax/crypto/spec/IvParameterSpec.java ! src/java.base/share/classes/javax/crypto/spec/RC2ParameterSpec.java ! src/java.base/share/classes/javax/crypto/spec/RC5ParameterSpec.java ! src/java.base/share/classes/javax/crypto/spec/SecretKeySpec.java Changeset: dea7a9f0 Branch: premain Author: Volodymyr Paprotski Committer: Sandhya Viswanathan Date: 2025-02-25 16:28:25 +0000 URL: https://git.openjdk.org/leyden/commit/dea7a9f0d640e5234bafe2157aecd942c71d5de5 8350516: Update model numbers for ECore-based cpus Reviewed-by: sviswanathan, vaivanov ! src/hotspot/cpu/x86/vm_version_x86.cpp Changeset: c5992ca2 Branch: premain Author: Mikhail Yankelevich Committer: Weijun Wang Date: 2025-02-25 18:24:42 +0000 URL: https://git.openjdk.org/leyden/commit/c5992ca27b7dddaaaf217b62445fdc48e7eaf240 8349533: Refactor validator tests shell files to java Reviewed-by: weijun ! test/jdk/sun/security/validator/CertReplace.java - test/jdk/sun/security/validator/certreplace.sh - test/jdk/sun/security/validator/samedn.sh Changeset: 0151b15b Branch: premain Author: Leonid Mesnik Date: 2025-02-25 19:19:40 +0000 URL: https://git.openjdk.org/leyden/commit/0151b15b7cc077a30b00f2af4a5e3f831d1d92cb 8348367: Remove hotspot_not_fast_compiler and hotspot_slow_compiler test groups Reviewed-by: thartmann, chagedorn ! test/hotspot/jtreg/TEST.groups Changeset: 829d7a84 Branch: premain Author: Leonid Mesnik Date: 2025-02-25 19:20:05 +0000 URL: https://git.openjdk.org/leyden/commit/829d7a845e18ec483379abf3a3fccb596d899f25 8339889: Several compiler tests ignore vm flags and not marked as flagless Reviewed-by: thartmann ! test/hotspot/jtreg/compiler/c2/TestReduceAllocationAndHeapDump.java ! test/hotspot/jtreg/compiler/calls/NativeCalls.java ! test/hotspot/jtreg/compiler/debug/TestStress.java ! test/hotspot/jtreg/compiler/inlining/TestDuplicatedLateInliningOutput.java Changeset: d422abc5 Branch: premain Author: Ioi Lam Date: 2025-02-25 19:25:18 +0000 URL: https://git.openjdk.org/leyden/commit/d422abc55aa93d8603d29d269dfb3325bd77f34d 8350668: has_extra_module_paths in filemap.cpp may be uninitialized Reviewed-by: ccheung, shade ! src/hotspot/share/cds/filemap.cpp Changeset: a3188e04 Branch: premain Author: Archie Cobbs Date: 2025-02-25 19:39:00 +0000 URL: https://git.openjdk.org/leyden/commit/a3188e0406bcd69468de0444038525d3d069699f 8349991: GraphUtils.java can use String.replace() instead of String.replaceAll() Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/GraphUtils.java Changeset: b78043fd Branch: premain Author: Archie Cobbs Date: 2025-02-25 19:39:21 +0000 URL: https://git.openjdk.org/leyden/commit/b78043fdc64dba62293631ad0cc263029e8dfb1e 8320220: Compilation of cyclic hierarchy causes infinite recursion Reviewed-by: vromero, jlahoda ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java + test/langtools/tools/javac/ClassCycle/ClassCycle4.java + test/langtools/tools/javac/ClassCycle/ClassCycle4.out Changeset: d4fdc796 Branch: premain Author: Damon Nguyen Date: 2025-02-25 19:40:39 +0000 URL: https://git.openjdk.org/leyden/commit/d4fdc796aac8ece930c28579d285b21acf8e6ddb 8344981: [REDO] JDK-6672644 JComboBox still scrolling if switch to another window and return back Co-authored-by: Alexander Zvegintsev Reviewed-by: azvegint, psadhukhan, honkar ! src/java.desktop/share/classes/javax/swing/plaf/basic/BasicScrollBarUI.java + test/jdk/javax/swing/JComboBox/JComboBoxScrollFocusTest.java Changeset: 2efb0336 Branch: premain Author: Alexey Semenyuk Date: 2025-02-25 21:53:24 +0000 URL: https://git.openjdk.org/leyden/commit/2efb0336e0c257c34f9e49a50cbad1704691582e 8350601: Miscellaneous updates to jpackage test lib Reviewed-by: almatvee ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/TKitTest.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/AdditionalLauncher.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/JPackageCommand.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TKit.java ! test/jdk/tools/jpackage/share/AppImagePackageTest.java Changeset: 267d69be Branch: premain Author: Alexey Semenyuk Date: 2025-02-25 22:49:26 +0000 URL: https://git.openjdk.org/leyden/commit/267d69bed6265ec2820f17eb7534ec64d80ad093 8326447: jpackage creates Windows installers that cannot be signed Reviewed-by: almatvee ! src/jdk.jpackage/share/man/jpackage.md ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WinExeBundler.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/WinResources.properties ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/LauncherIconVerifier.java + test/jdk/tools/jpackage/helpers/jdk/jpackage/test/WinExecutableIconVerifier.java + test/jdk/tools/jpackage/resources/read-executable-icon.ps1 + test/jdk/tools/jpackage/windows/WinInstallerResourceTest.java Changeset: 86024ebd Branch: premain Author: Ioi Lam Date: 2025-02-25 22:56:25 +0000 URL: https://git.openjdk.org/leyden/commit/86024ebdb0f06517925c03e52246fbda0bad8f7c 8348426: Generate binary file for -XX:AOTMode=record -XX:AOTConfiguration=file Reviewed-by: ccheung, asmehra, kvn, iveresov ! src/hotspot/share/cds/aotClassLocation.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveUtils.hpp ! src/hotspot/share/cds/archiveUtils.inline.hpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConfig.hpp ! src/hotspot/share/cds/cds_globals.hpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dumpTimeClassInfo.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/filemap.hpp + src/hotspot/share/cds/finalImageRecipes.cpp + src/hotspot/share/cds/finalImageRecipes.hpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/lambdaFormInvokers.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/runTimeClassInfo.hpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/systemDictionaryShared.hpp ! src/hotspot/share/include/cds.h ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/oops/constantPool.cpp ! src/hotspot/share/oops/instanceKlass.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/threads.cpp ! test/hotspot/jtreg/TEST.groups ! test/hotspot/jtreg/runtime/cds/ArchiveDoesNotExist.java ! test/hotspot/jtreg/runtime/cds/appcds/AOTFlags.java + test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/AOTLoaderConstraintsTest.java + test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/BootClass.java ! test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/BulkLoaderTest.java ! test/hotspot/jtreg/runtime/cds/appcds/applications/JavacBench.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/ArchiveConsistency.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/TestAutoCreateSharedArchive.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/TestAutoCreateSharedArchiveUpgrade.java ! test/hotspot/jtreg/runtime/cds/appcds/jvmti/dumpingWithAgent/DumpingWithJavaAgent.java ! test/lib/jdk/test/lib/cds/CDSAppTester.java Changeset: c8a521fd Branch: premain Author: Naoto Sato Date: 2025-02-25 23:03:18 +0000 URL: https://git.openjdk.org/leyden/commit/c8a521fddac9d42fe93ea9b3ab89e804bc48bf4e 8345213: JVM Prefers /etc/timezone Over /etc/localtime on Debian 12 Reviewed-by: joehw, jpai, alanb ! src/java.base/unix/native/libjava/TimeZone_md.c Changeset: 117f907a Branch: premain Author: Ioi Lam Date: 2025-02-25 18:03:48 +0000 URL: https://git.openjdk.org/leyden/commit/117f907a4007a8474d695f09f6d15c297b0262e6 Merge branch 'master' into premain ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/cds/aotClassLocation.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveUtils.hpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConfig.hpp ! src/hotspot/share/cds/cds_globals.hpp ! src/hotspot/share/cds/classListParser.cpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dumpTimeClassInfo.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/filemap.hpp ! src/hotspot/share/cds/finalImageRecipes.cpp ! src/hotspot/share/cds/finalImageRecipes.hpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/lambdaFormInvokers.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/systemDictionaryShared.hpp ! src/hotspot/share/include/cds.h ! src/hotspot/share/include/jvm.h ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/javaThread.hpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/mutexLocker.hpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/threads.cpp ! src/java.base/share/classes/java/lang/Class.java ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups ! test/hotspot/jtreg/runtime/cds/appcds/applications/JavacBench.java ! test/lib/jdk/test/lib/cds/CDSAppTester.java ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/cds/aotClassLocation.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveUtils.hpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConfig.hpp ! src/hotspot/share/cds/cds_globals.hpp ! src/hotspot/share/cds/classListParser.cpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dumpTimeClassInfo.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/filemap.hpp ! src/hotspot/share/cds/finalImageRecipes.cpp ! src/hotspot/share/cds/finalImageRecipes.hpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/lambdaFormInvokers.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/systemDictionaryShared.hpp ! src/hotspot/share/include/cds.h ! src/hotspot/share/include/jvm.h ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/prims/jvm.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/javaThread.hpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/mutexLocker.hpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/hotspot/share/runtime/threads.cpp ! src/java.base/share/classes/java/lang/Class.java ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/TEST.groups ! test/hotspot/jtreg/runtime/cds/appcds/applications/JavacBench.java ! test/lib/jdk/test/lib/cds/CDSAppTester.java Changeset: 3268600e Branch: premain Author: Ioi Lam Date: 2025-02-25 22:13:14 +0000 URL: https://git.openjdk.org/leyden/commit/3268600e1aace5ed4cf7aeb15edf4f855e76269f Fixed merge with 8348426: Generate binary file for -XX:AOTMode=record -XX:AOTConfiguration=file ! src/hotspot/share/cds/aotLinkedClassBulkLoader.cpp ! src/hotspot/share/cds/aotLinkedClassBulkLoader.hpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/finalImageRecipes.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! test/hotspot/jtreg/runtime/cds/appcds/applications/SpringPetClinic.java ! test/hotspot/jtreg/runtime/cds/appcds/leyden/DynamicProxyTest.java ! test/hotspot/jtreg/runtime/cds/appcds/leyden/ExcludedClasses.java From duke at openjdk.org Wed Feb 26 19:15:51 2025 From: duke at openjdk.org (duke) Date: Wed, 26 Feb 2025 19:15:51 GMT Subject: git: openjdk/leyden: premain: Fix a problem with ciObject creation Message-ID: Changeset: 6a701b82 Branch: premain Author: Igor Veresov Date: 2025-02-26 11:12:56 +0000 URL: https://git.openjdk.org/leyden/commit/6a701b82d698123d8dc9aa8648d6c3572d92ec08 Fix a problem with ciObject creation ! src/hotspot/share/ci/ciObjectFactory.cpp ! src/hotspot/share/ci/ciObjectFactory.hpp From macarte at openjdk.org Wed Feb 26 19:30:15 2025 From: macarte at openjdk.org (Mat Carter) Date: Wed, 26 Feb 2025 19:30:15 GMT Subject: RFR: 8341587: [premain] Support Soft/Weak Reference in AOT cache [v5] In-Reply-To: <1CDhT56TpZELvE8RL89YLmlBeaQa27yBfPe0O6E3jPU=.90c8cc08-5942-47ec-8680-c55c5a847e86@github.com> References: <1CDhT56TpZELvE8RL89YLmlBeaQa27yBfPe0O6E3jPU=.90c8cc08-5942-47ec-8680-c55c5a847e86@github.com> Message-ID: On Fri, 21 Feb 2025 16:44:27 GMT, Mat Carter wrote: >> Add support to the AOT cache for References (soft, weak and phantom) >> Remove the workarounds that were added because References weren't supported >> >> Confirmed from logs that References are stored in the cache correctly >> >> All demos run successfully on osx > > Mat Carter has updated the pull request incrementally with one additional commit since the last revision: > > remove a whitespace I'll take a look ------------- PR Comment: https://git.openjdk.org/leyden/pull/41#issuecomment-2685996444 From iklam at openjdk.org Wed Feb 26 21:33:23 2025 From: iklam at openjdk.org (Ioi Lam) Date: Wed, 26 Feb 2025 21:33:23 GMT Subject: git: openjdk/leyden: premain: Enable training data in -XX:AOTCache Message-ID: <31e23ed8-e557-4560-a942-7b40cfbb8403@openjdk.org> Changeset: 192f1195 Branch: premain Author: Ioi Lam Date: 2025-02-26 13:30:50 +0000 URL: https://git.openjdk.org/leyden/commit/192f11956337dc990f71d9b7682a0f3db47a38d7 Enable training data in -XX:AOTCache ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/dumpAllocStats.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/runtime/cds/appcds/AOTFlags.java ! test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/StringConcatStress.java ! test/hotspot/jtreg/runtime/cds/appcds/applications/HelidonQuickStartSE.java ! test/hotspot/jtreg/runtime/cds/appcds/applications/MicronautFirstApp.java ! test/hotspot/jtreg/runtime/cds/appcds/applications/QuarkusGettingStarted.java ! test/hotspot/jtreg/runtime/cds/appcds/applications/SpringPetClinic.java ! test/hotspot/jtreg/runtime/cds/appcds/leyden/CacheOnlyClassesIn.java ! test/hotspot/jtreg/runtime/cds/appcds/leyden/DynamicProxyTest.java ! test/hotspot/jtreg/runtime/cds/appcds/leyden/ExcludedClasses.java ! test/hotspot/jtreg/runtime/cds/appcds/leyden/LeydenAndOldClasses.java ! test/hotspot/jtreg/runtime/cds/appcds/leyden/LeydenHello.java ! test/hotspot/jtreg/runtime/cds/appcds/leyden/LeydenReflection.java ! test/lib/jdk/test/lib/cds/CDSAppTester.java From iklam at openjdk.org Thu Feb 27 03:42:51 2025 From: iklam at openjdk.org (Ioi Lam) Date: Thu, 27 Feb 2025 03:42:51 GMT Subject: git: openjdk/leyden: premain: 2 new changesets Message-ID: <8b2cbec5-5129-4c79-940a-c1a64dc2fdd7@openjdk.org> Changeset: 0a8988cf Branch: premain Author: Ioi Lam Date: 2025-02-26 16:40:04 +0000 URL: https://git.openjdk.org/leyden/commit/0a8988cf5aa84bcb3a93e7ce03fb3ee5bebe9e78 Enable compiled code in -XX:AOTCache ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/code/SCCache.cpp ! test/hotspot/jtreg/runtime/cds/appcds/AOTFlags.java Changeset: cb2e447b Branch: premain Author: Ioi Lam Date: 2025-02-26 19:17:05 +0000 URL: https://git.openjdk.org/leyden/commit/cb2e447b7a2497e2017b373166555b6ef68261cf Remove obsolete switch -XX:CachedCodeFile ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/code/SCCache.cpp ! src/hotspot/share/compiler/compiler_globals.hpp From duke at openjdk.org Thu Feb 27 22:47:18 2025 From: duke at openjdk.org (duke) Date: Thu, 27 Feb 2025 22:47:18 GMT Subject: git: openjdk/leyden: hermetic-java-runtime: 121 new changesets Message-ID: Changeset: 62d93f2a Branch: hermetic-java-runtime Author: Leonid Mesnik Date: 2025-02-18 20:06:05 +0000 URL: https://git.openjdk.org/leyden/commit/62d93f2a2222a044ac4aa409efd69e776f0d43da 8346050: Update BuildTestLib.gmk to build whole testlibrary Reviewed-by: weijun, ihse ! make/test/BuildTestLib.gmk ! test/lib/jdk/test/lib/security/CertUtils.java ! test/lib/jdk/test/lib/security/FixedSecureRandom.java ! test/lib/jdk/test/lib/security/SeededSecureRandom.java ! test/lib/jdk/test/lib/security/XMLUtils.java Changeset: 46d4a601 Branch: hermetic-java-runtime Author: Vladimir Kozlov Date: 2025-02-18 20:08:08 +0000 URL: https://git.openjdk.org/leyden/commit/46d4a601e04f90b11d4ccc97a49f4e7010b4fd83 8349088: De-virtualize Codeblob and nmethod Co-authored-by: Stefan Karlsson Co-authored-by: Chris Plummer Reviewed-by: cjplummer, aboldtch, dlong ! src/hotspot/share/code/codeBlob.cpp ! src/hotspot/share/code/codeBlob.hpp ! src/hotspot/share/code/dependencyContext.cpp ! src/hotspot/share/code/nmethod.cpp ! src/hotspot/share/code/nmethod.hpp ! src/hotspot/share/runtime/vmStructs.cpp ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/c1/Runtime1.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/AdapterBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/BufferBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/CodeBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/CodeCache.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/DeoptimizationBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/ExceptionBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/MethodHandlesAdapterBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/NMethod.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/RuntimeStub.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/SafepointBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/SingletonBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/UncommonTrapBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/UpcallStub.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/VtableBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/CodeHeap.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/PStack.java Changeset: f2b4e12a Branch: hermetic-java-runtime Author: Doug Simon Date: 2025-02-18 20:18:08 +0000 URL: https://git.openjdk.org/leyden/commit/f2b4e12afe67086a2ae08081fd545e5ce4d731fd 8350263: JvmciNotifyBootstrapFinishedEventTest intermittently times out Reviewed-by: yzheng, never ! test/hotspot/jtreg/compiler/jvmci/TestUncaughtErrorInCompileMethod.config ! test/hotspot/jtreg/compiler/jvmci/TestUncaughtErrorInCompileMethod.java ! test/hotspot/jtreg/compiler/jvmci/events/JvmciNotifyBootstrapFinishedEventTest.config ! test/hotspot/jtreg/compiler/jvmci/events/JvmciNotifyBootstrapFinishedEventTest.java Changeset: 2d03bd00 Branch: hermetic-java-runtime Author: Leonid Mesnik Date: 2025-02-18 20:58:04 +0000 URL: https://git.openjdk.org/leyden/commit/2d03bd007895b139b027947852c8b5ad8eab49b6 8350280: The JDK-8346050 testlibrary changes break the build Reviewed-by: dholmes ! make/test/BuildTestLib.gmk Changeset: 04659a40 Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-19 01:30:16 +0000 URL: https://git.openjdk.org/leyden/commit/04659a40736610164855ac161120e63fcd46fe31 8350197: [UBSAN] Node::dump_idx reported float-cast-overflow Reviewed-by: chagedorn ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/opto/node.cpp Changeset: 4de92a40 Branch: hermetic-java-runtime Author: Prasanta Sadhukhan Date: 2025-02-19 02:19:27 +0000 URL: https://git.openjdk.org/leyden/commit/4de92a40d0750a2e6f72eb675d900f1129718d39 8350224: Test javax/swing/JComboBox/TestComboBoxComponentRendering.java fails in ubuntu 23.x and later Reviewed-by: aivanov, azvegint ! test/jdk/ProblemList.txt ! test/jdk/javax/swing/JComboBox/TestComboBoxComponentRendering.java Changeset: 9042aa82 Branch: hermetic-java-runtime Author: Christian Stein Date: 2025-02-19 06:38:39 +0000 URL: https://git.openjdk.org/leyden/commit/9042aa82a890b0f0348ac8127dbd3268f2620346 8339238: Update to use jtreg 7.5.1 Reviewed-by: erikj, jpai, rriggs, iris ! make/autoconf/lib-tests.m4 ! make/conf/github-actions.conf ! make/conf/jib-profiles.js ! test/docs/TEST.ROOT ! test/hotspot/jtreg/TEST.ROOT ! test/jaxp/TEST.ROOT ! test/jdk/TEST.ROOT ! test/langtools/TEST.ROOT ! test/lib-test/TEST.ROOT Changeset: 0ef1c409 Branch: hermetic-java-runtime Author: Roberto Casta?eda Lozano Date: 2025-02-19 09:17:27 +0000 URL: https://git.openjdk.org/leyden/commit/0ef1c40991e703592fc79325bda1a6d2fc6caf4e 8350006: IGV: show memory slices as type information Reviewed-by: dlunden, chagedorn, dfenacci ! src/hotspot/share/opto/idealGraphPrinter.cpp ! src/hotspot/share/opto/idealGraphPrinter.hpp ! src/utils/IdealGraphVisualizer/ServerCompiler/src/main/resources/com/sun/hotspot/igv/servercompiler/filters/showTypes.filter Changeset: d13fd573 Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-19 11:02:14 +0000 URL: https://git.openjdk.org/leyden/commit/d13fd5738f8a3d4b4009c2e15cfd967332d97bbd 8350211: CTW: Attempt to preload all classes in constant pool Reviewed-by: vlivanov, chagedorn ! test/hotspot/jtreg/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java Changeset: 79db2d41 Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-19 11:33:57 +0000 URL: https://git.openjdk.org/leyden/commit/79db2d4186eb2af827295581464be8602ac95f98 8350159: compiler/tiered/Level2RecompilationTest.java fails after JDK-8349915 Reviewed-by: kvn, chagedorn ! src/hotspot/share/compiler/compilationPolicy.cpp ! test/hotspot/jtreg/ProblemList.txt Changeset: 2353f3e2 Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-19 11:35:00 +0000 URL: https://git.openjdk.org/leyden/commit/2353f3e2f18ccaa972ee7a292d5a45035c647881 8350210: CTW: Use stackless exceptions Reviewed-by: kvn, chagedorn ! test/hotspot/jtreg/testlibrary/ctw/src/sun/hotspot/tools/ctw/CtwRunner.java Changeset: 59810ad7 Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-19 12:14:04 +0000 URL: https://git.openjdk.org/leyden/commit/59810ad745b28f50d287fa8db650c3f1924791d9 8350201: Out of bounds access on Linux aarch64 in os::print_register_info Reviewed-by: dholmes, mdoerr ! src/hotspot/os_cpu/aix_ppc/os_aix_ppc.cpp ! src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.cpp ! src/hotspot/os_cpu/linux_ppc/os_linux_ppc.cpp Changeset: 014701a0 Branch: hermetic-java-runtime Author: Alexey Ivanov Date: 2025-02-19 12:22:51 +0000 URL: https://git.openjdk.org/leyden/commit/014701a09b23d21f57edb5b085820532804475bd 8350260: Improve HTML instruction formatting in PassFailJFrame Reviewed-by: kizune, azvegint, abhiscxk ! test/jdk/java/awt/regtesthelpers/PassFailJFrame.java Changeset: 577ff98a Branch: hermetic-java-runtime Author: Sean Mullan Date: 2025-02-19 13:18:20 +0000 URL: https://git.openjdk.org/leyden/commit/577ff98a6733a99ea49510f15d631beff39c34a5 8347946: Add API note that caller should validate/trust signers to the getCertificates and getCodeSigners methods of JarEntry and JarURLConnection Reviewed-by: lancea, jpai ! src/java.base/share/classes/java/net/JarURLConnection.java ! src/java.base/share/classes/java/util/jar/JarEntry.java ! src/java.base/share/classes/java/util/jar/JarFile.java Changeset: c6e47fd5 Branch: hermetic-java-runtime Author: Albert Mingkun Yang Date: 2025-02-19 14:15:16 +0000 URL: https://git.openjdk.org/leyden/commit/c6e47fd5812997e3428249be1c77c60e7b05a5df 8348171: Refactor GenerationCounters and its subclasses Co-authored-by: Thomas Schatzl Reviewed-by: gli, tschatzl, zgu ! src/hotspot/share/gc/epsilon/epsilonMonitoringSupport.cpp ! src/hotspot/share/gc/epsilon/epsilonMonitoringSupport.hpp ! src/hotspot/share/gc/g1/g1MonitoringSupport.cpp ! src/hotspot/share/gc/g1/g1MonitoringSupport.hpp - src/hotspot/share/gc/parallel/psGenerationCounters.cpp - src/hotspot/share/gc/parallel/psGenerationCounters.hpp ! src/hotspot/share/gc/parallel/psOldGen.cpp ! src/hotspot/share/gc/parallel/psOldGen.hpp ! src/hotspot/share/gc/parallel/psYoungGen.cpp ! src/hotspot/share/gc/parallel/psYoungGen.hpp ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/tenuredGeneration.cpp ! src/hotspot/share/gc/shared/generationCounters.cpp ! src/hotspot/share/gc/shared/generationCounters.hpp ! src/hotspot/share/gc/shenandoah/shenandoahMonitoringSupport.cpp ! src/hotspot/share/gc/shenandoah/shenandoahMonitoringSupport.hpp ! src/hotspot/share/gc/z/zServiceability.cpp Changeset: efbad00c Branch: hermetic-java-runtime Author: Ivan Walulya Date: 2025-02-19 14:27:33 +0000 URL: https://git.openjdk.org/leyden/commit/efbad00c4d7931177ccc5e9bce3b30dfbac94010 8349688: G1: Wrong initial optional region index when selecting candidates from retained regions Reviewed-by: tschatzl, ayang ! src/hotspot/share/gc/g1/g1CollectionSet.cpp Changeset: 70a6c0b7 Branch: hermetic-java-runtime Author: konanki sreenath Committer: Weijun Wang Date: 2025-02-19 16:47:54 +0000 URL: https://git.openjdk.org/leyden/commit/70a6c0b7ac952eebdffa1d64399cd0ee1efec1f6 8346094: Harden X509CertImpl.getExtensionValue for NPE cases Reviewed-by: coffeys, weijun ! src/java.base/share/classes/sun/security/x509/X509CertImpl.java ! test/jdk/sun/security/util/HostnameChecker/TestHostnameChecker.java + test/jdk/sun/security/x509/X509CertImpl/CertExtensions.java Changeset: 3487f8cb Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-19 17:08:01 +0000 URL: https://git.openjdk.org/leyden/commit/3487f8cbd55b06d332d897a010ae8eb371dd4956 8350102: Decouple jpackage test-lib Executor.Result and Executor classes Reviewed-by: almatvee ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/Executor.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/JPackageCommand.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/WindowsHelper.java Changeset: 76319845 Branch: hermetic-java-runtime Author: Matias Saavedra Silva Date: 2025-02-19 17:26:41 +0000 URL: https://git.openjdk.org/leyden/commit/76319845255d5f71acb2f88e684ba788bdadfa93 8349923: Refactor StackMapTable constructor and StackMapReader Reviewed-by: coleenp, dholmes ! src/hotspot/share/classfile/stackMapTable.cpp ! src/hotspot/share/classfile/stackMapTable.hpp ! src/hotspot/share/classfile/verifier.cpp Changeset: 7734f8ed Branch: hermetic-java-runtime Author: Mikhail Yankelevich Committer: Weijun Wang Date: 2025-02-19 18:56:26 +0000 URL: https://git.openjdk.org/leyden/commit/7734f8ed13f04ba01258b4fbe18a3d9b66f7fc7a 8349664: HEX dump should always use ASCII or ISO_8859_1 Reviewed-by: weijun ! src/java.base/share/classes/sun/security/util/HexDumpEncoder.java + test/jdk/sun/security/util/HexDumpEncoderTests.java Changeset: 4e60c2d9 Branch: hermetic-java-runtime Author: Joe Wang Date: 2025-02-19 19:36:30 +0000 URL: https://git.openjdk.org/leyden/commit/4e60c2d937fca8170b356f36e72b271104130c40 8349699: XSL transform fails with certain UTF-8 characters on 1024 byte boundaries Reviewed-by: lancea, naoto ! src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/ToStream.java ! test/jaxp/javax/xml/jaxp/unittest/transform/JDK8207760.java Changeset: 4fb70c79 Branch: hermetic-java-runtime Author: Chris Plummer Date: 2025-02-19 19:58:11 +0000 URL: https://git.openjdk.org/leyden/commit/4fb70c79c1383507bd42cd7f569cbde28393a2b8 8229012: When single stepping, the debug agent can cause the thread to remain in interpreter mode after single stepping completes Reviewed-by: kevinw, sspitsyn ! src/jdk.jdwp.agent/share/native/libjdwp/stepControl.c + test/jdk/com/sun/jdi/SingleStepCompilationTest.java Changeset: 92efab90 Branch: hermetic-java-runtime Author: Boris Ulasevich Date: 2025-02-19 21:02:27 +0000 URL: https://git.openjdk.org/leyden/commit/92efab90db24a76cc28fc1ae1db870a0dd670266 8350344: Cross-build failure: _vptr name conflict Reviewed-by: kvn ! src/hotspot/share/code/codeBlob.cpp ! src/hotspot/share/code/codeBlob.hpp ! src/hotspot/share/code/nmethod.hpp Changeset: 3ebed783 Branch: hermetic-java-runtime Author: Nicole Xu Committer: Hao Sun Date: 2025-02-20 01:33:58 +0000 URL: https://git.openjdk.org/leyden/commit/3ebed78328bd64d2e18369d63d6ea323b87a7b24 8349943: [JMH] Use jvmArgs consistently Reviewed-by: syan, redestad, haosun ! test/micro/org/openjdk/bench/java/lang/foreign/CallByRefHighArity.java ! test/micro/org/openjdk/bench/java/lang/foreign/LoopOverRandom.java ! test/micro/org/openjdk/bench/java/lang/foreign/SegmentOfBuffer.java ! test/micro/org/openjdk/bench/java/security/MLDSA.java ! test/micro/org/openjdk/bench/java/security/MLKEMBench.java ! test/micro/org/openjdk/bench/javax/crypto/full/AESBench.java ! test/micro/org/openjdk/bench/jdk/incubator/vector/VectorMultiplyOptBenchmark.java ! test/micro/org/openjdk/bench/jdk/incubator/vector/VectorXXH3HashingBenchmark.java ! test/micro/org/openjdk/bench/vm/compiler/MergeStores.java Changeset: 0131c1bf Branch: hermetic-java-runtime Author: Ioi Lam Date: 2025-02-20 02:13:41 +0000 URL: https://git.openjdk.org/leyden/commit/0131c1bfd8ccfdf4f3d73cddfc2a87e2a6e99581 8349953: Avoid editing AOTConfiguration file in "make test JTREG=AOT_JDK=true" Reviewed-by: erikj, ccheung ! make/Main.gmk ! make/RunTests.gmk + make/test/BuildTestSetupAOT.gmk ! src/hotspot/share/cds/classListParser.cpp + test/setup_aot/TestSetupAOT.java Changeset: 00d4e4a9 Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-20 02:51:24 +0000 URL: https://git.openjdk.org/leyden/commit/00d4e4a9710f89506f36156c24b0f3c5412971fa 8350051: [JMH] Several tests fails NPE Reviewed-by: erikj, redestad ! make/test/BuildMicrobenchmark.gmk ! test/micro/org/openjdk/bench/javax/xml/AbstractXMLMicro.java Changeset: 26bf445f Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-20 07:24:51 +0000 URL: https://git.openjdk.org/leyden/commit/26bf445f4726f1936a0a4cbaf1424c5235424bfb 8350049: [JMH] Float16OperationsBenchmark fails java.lang.NoClassDefFoundError Reviewed-by: jbhateja ! test/micro/org/openjdk/bench/jdk/incubator/vector/Float16OperationsBenchmark.java Changeset: c5c91a82 Branch: hermetic-java-runtime Author: Amit Kumar Date: 2025-02-20 08:53:19 +0000 URL: https://git.openjdk.org/leyden/commit/c5c91a82931d8bd3aa4dc1568162097ef4b66ce0 8345285: [s390x] test failures: foreign/normalize/TestNormalize.java with C2 Reviewed-by: mdoerr, aph ! src/hotspot/cpu/s390/abstractInterpreter_s390.cpp Changeset: 0662e39a Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-20 08:58:18 +0000 URL: https://git.openjdk.org/leyden/commit/0662e39a6ef722f6e09383566648c794a47ebabe 8350267: Set mtune and mcpu settings in JDK native lib compilation on Linux ppc64(le) Reviewed-by: mdoerr, asteiner, erikj ! make/autoconf/flags-cflags.m4 Changeset: 86d06162 Branch: hermetic-java-runtime Author: Hao Sun Date: 2025-02-20 09:03:53 +0000 URL: https://git.openjdk.org/leyden/commit/86d0616276c0a8d60c3b7ff79ade6c83ff0c72a2 8350303: ARM32: StubCodeGenerator::verify_stub(StubGenStubId) failed after JDK-8343767 Reviewed-by: shade, adinn ! src/hotspot/share/runtime/stubDeclarations.hpp Changeset: 1e87ff01 Branch: hermetic-java-runtime Author: Abhishek Kumar Date: 2025-02-20 09:17:40 +0000 URL: https://git.openjdk.org/leyden/commit/1e87ff01994df16df7de331040fc5d7a4a85f630 8348936: [Accessibility,macOS,VoiceOver] VoiceOver doesn't announce untick on toggling the checkbox with "space" key on macOS 8345728: [Accessibility,macOS,Screen Magnifier]: JCheckbox unchecked state does not magnify but works for checked state Reviewed-by: aivanov, kizune, dnguyen, asemenov ! src/java.desktop/macosx/classes/sun/lwawt/macosx/CAccessible.java + test/jdk/javax/accessibility/TestJCheckBoxToggleAccessibility.java Changeset: 735805d9 Branch: hermetic-java-runtime Author: Martin Doerr Date: 2025-02-20 12:03:08 +0000 URL: https://git.openjdk.org/leyden/commit/735805d9259037ae594eb4f75e96860d43feea5d 8349727: [PPC] C1: Improve Class.isInstance intrinsic Reviewed-by: rrich, varadam ! src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.cpp ! src/hotspot/cpu/ppc/c1_LIRGenerator_ppc.cpp ! src/hotspot/cpu/ppc/c1_Runtime1_ppc.cpp ! src/hotspot/cpu/ppc/macroAssembler_ppc.cpp Changeset: 960ad211 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-20 15:47:54 +0000 URL: https://git.openjdk.org/leyden/commit/960ad211867d65a993b2fc4e6dafa8cea9827b3f 8349620: Add VMProps for static JDK Reviewed-by: alanb, manc ! src/hotspot/share/prims/whitebox.cpp ! test/hotspot/jtreg/TEST.ROOT ! test/hotspot/jtreg/runtime/modules/ModulesSymLink.java ! test/jdk/TEST.ROOT ! test/jtreg-ext/requires/VMProps.java ! test/lib/jdk/test/whitebox/WhiteBox.java Changeset: 10bf48a6 Branch: hermetic-java-runtime Author: Johan Sj?len Date: 2025-02-20 15:50:24 +0000 URL: https://git.openjdk.org/leyden/commit/10bf48a6b0b796b48cdca15250e1ee7e7be83c82 8350214: Test gtest/AsyncLogGtest.java fails after JDK-8349755 Reviewed-by: aboldtch, dholmes ! src/hotspot/share/logging/logAsyncWriter.cpp ! src/hotspot/share/logging/logAsyncWriter.hpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/logging/logTagSet.cpp ! src/hotspot/share/runtime/globals.hpp ! test/hotspot/jtreg/runtime/logging/AsyncDeathTest.java Changeset: 53db5764 Branch: hermetic-java-runtime Author: Nizar Benalla Date: 2025-02-20 15:53:05 +0000 URL: https://git.openjdk.org/leyden/commit/53db57648a09c4c380064eea11fcdb680011d741 8350137: After JDK-8348975, Linux builds contain man pages for windows only tools Reviewed-by: erikj ! make/Docs.gmk ! make/common/Modules.gmk Changeset: 16873732 Branch: hermetic-java-runtime Author: Erik Joelsson Date: 2025-02-20 17:46:06 +0000 URL: https://git.openjdk.org/leyden/commit/16873732a752d79c3bf1bc450c63839997986d9e 8349933: Mixing of includes and snippets stack causes the wrong -post snippet to be included Reviewed-by: ihse ! make/common/MakeIncludeEnd.gmk ! make/common/MakeIncludeStart.gmk ! make/common/MakeSnippetEnd.gmk ! make/common/MakeSnippetStart.gmk Changeset: 1eb0db37 Branch: hermetic-java-runtime Author: Leonid Mesnik Date: 2025-02-20 18:00:33 +0000 URL: https://git.openjdk.org/leyden/commit/1eb0db37608ae1dd05accc1e22c57d76fa2c72ce 8350151: Support requires property to filter tests incompatible with --enable-preview Reviewed-by: alanb, rriggs ! test/hotspot/jtreg/TEST.ROOT ! test/jdk/TEST.ROOT ! test/jdk/java/lang/invoke/defineHiddenClass/PreviewHiddenClass.java ! test/jtreg-ext/requires/VMProps.java ! test/langtools/TEST.ROOT Changeset: f979f727 Branch: hermetic-java-runtime Author: Fernando Guallini Committer: Rajan Halade Date: 2025-02-20 18:52:30 +0000 URL: https://git.openjdk.org/leyden/commit/f979f727b6137be9a3f85baed4fbfdd785970044 8337723: Remove redundant tests from com/sun/security/sasl/gsskerb Reviewed-by: rhalade ! test/jdk/ProblemList.txt ! test/jdk/TEST.groups - test/jdk/com/sun/security/sasl/gsskerb/AuthOnly.java - test/jdk/com/sun/security/sasl/gsskerb/ConfSecurityLayer.java - test/jdk/com/sun/security/sasl/gsskerb/NoSecurityLayer.java - test/jdk/com/sun/security/sasl/gsskerb/PropertiesFileCallbackHandler.java - test/jdk/com/sun/security/sasl/gsskerb/gsseg_jaas.conf - test/jdk/com/sun/security/sasl/gsskerb/log.properties - test/jdk/com/sun/security/sasl/gsskerb/run-conf-wjaas.csh - test/jdk/com/sun/security/sasl/gsskerb/run-nosec-wjaas.csh - test/jdk/com/sun/security/sasl/gsskerb/runwjaas.csh ! test/jdk/sun/security/krb5/auto/SaslBasic.java Changeset: 16033ea7 Branch: hermetic-java-runtime Author: Fernando Guallini Committer: Rajan Halade Date: 2025-02-20 18:52:57 +0000 URL: https://git.openjdk.org/leyden/commit/16033ea79a01b27a7f5cbb31d64da0e80afc7dc3 8342238: Test javax/crypto/CryptoPermissions/InconsistentEntries.java writes files in tested JDK dir Reviewed-by: jnimeh, rhalade ! test/jdk/javax/crypto/CryptoPermissions/InconsistentEntries.java Changeset: c73fead5 Branch: hermetic-java-runtime Author: Hamlin Li Date: 2025-02-21 09:48:54 +0000 URL: https://git.openjdk.org/leyden/commit/c73fead5caea8008586b31a5009c64011637b8cc 8350383: Test: add more test case for string compare (UL case) Reviewed-by: fyang ! test/hotspot/jtreg/compiler/intrinsics/string/TestStringIntrinsics.java Changeset: 1b6281d9 Branch: hermetic-java-runtime Author: Hamlin Li Date: 2025-02-21 10:25:50 +0000 URL: https://git.openjdk.org/leyden/commit/1b6281d98cf0e7c5435c563bfedd6f07b79bfa62 8321003: RISC-V: C2 MulReductionVI 8321004: RISC-V: C2 MulReductionVL Reviewed-by: fyang, rehn ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.hpp ! src/hotspot/cpu/riscv/riscv_v.ad ! test/hotspot/jtreg/compiler/loopopts/superword/ProdRed_Int.java ! test/hotspot/jtreg/compiler/loopopts/superword/RedTest_int.java ! test/hotspot/jtreg/compiler/loopopts/superword/RedTest_long.java Changeset: dfcd0df6 Branch: hermetic-java-runtime Author: Volkan Yazici Committer: Daniel Fuchs Date: 2025-02-21 10:26:55 +0000 URL: https://git.openjdk.org/leyden/commit/dfcd0df60c60cf89dc01682264a573ad39e61a17 8350019: HttpClient: DelegatingExecutor should resort to the fallback executor only on RejectedExecutionException Reviewed-by: dfuchs ! src/java.net.http/share/classes/jdk/internal/net/http/HttpClientImpl.java + test/jdk/java/net/httpclient/whitebox/DelegatingExecutorTestDriver.java + test/jdk/java/net/httpclient/whitebox/java.net.http/jdk/internal/net/http/DelegatingExecutorTest.java Changeset: 24b55736 Branch: hermetic-java-runtime Author: Matias Saavedra Silva Date: 2025-02-21 16:17:31 +0000 URL: https://git.openjdk.org/leyden/commit/24b557361a481d7f38f8016506573623b91bd8c8 8350444: Check for verifer error in StackMapReader::check_offset() Reviewed-by: coleenp, dholmes ! src/hotspot/share/classfile/stackMapTable.cpp Changeset: bd8ad309 Branch: hermetic-java-runtime Author: Xiaolong Peng Committer: Aleksey Shipilev Date: 2025-02-21 16:39:17 +0000 URL: https://git.openjdk.org/leyden/commit/bd8ad309b59bceb3073a8d6411cca74e73508885 8350285: Shenandoah: Regression caused by ShenandoahLock under extreme contention Reviewed-by: shade, kdnilsen ! src/hotspot/share/gc/shenandoah/shenandoahLock.cpp ! src/hotspot/share/gc/shenandoah/shenandoahLock.hpp Changeset: b45c32cd Branch: hermetic-java-runtime Author: Chris Plummer Date: 2025-02-21 19:09:38 +0000 URL: https://git.openjdk.org/leyden/commit/b45c32cd4fb55fac4fc5161b9cd76415c69b203b 8350287: Cleanup SA's support for CodeBlob subclasses Reviewed-by: kvn, sspitsyn - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/AdapterBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/BufferBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/CodeBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/CodeCache.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/DeoptimizationBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/ExceptionBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/MethodHandlesAdapterBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/RuntimeBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/RuntimeStub.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/SafepointBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/SingletonBlob.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/UncommonTrapBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/UpcallStub.java - src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/VtableBlob.java ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/PStack.java Changeset: 9d9d7a17 Branch: hermetic-java-runtime Author: Jamil Nimeh Date: 2025-02-21 20:30:02 +0000 URL: https://git.openjdk.org/leyden/commit/9d9d7a17d3d1a8971712ef1b22e919012350db6f 8349759: Add unit test for CertificateBuilder and SimpleOCSPServer test utilities Reviewed-by: mullan + test/lib-test/jdk/test/lib/security/CPVAlgTestWithOCSP.java ! test/lib/jdk/test/lib/security/CertificateBuilder.java ! test/lib/jdk/test/lib/security/SimpleOCSPServer.java Changeset: 825ab20b Branch: hermetic-java-runtime Author: Fernando Guallini Date: 2025-02-21 21:06:54 +0000 URL: https://git.openjdk.org/leyden/commit/825ab20ba99b1f1127dd94b87ae56020d1831529 8350456: Test javax/crypto/CryptoPermissions/InconsistentEntries.java crashed: EXCEPTION_ACCESS_VIOLATION Reviewed-by: rhalade, jnimeh ! test/jdk/javax/crypto/CryptoPermissions/InconsistentEntries.java ! test/lib/jdk/test/lib/util/FileUtils.java Changeset: 25322aae Branch: hermetic-java-runtime Author: Dmitry Chuyko Date: 2025-02-21 21:43:54 +0000 URL: https://git.openjdk.org/leyden/commit/25322aae8e224680db376098d2e45f26cf3334a0 8350258: AArch64: Client build fails after JDK-8347917 Reviewed-by: dlong, kvn ! src/hotspot/cpu/aarch64/frame_aarch64.cpp Changeset: 5cbd9d1f Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-22 03:11:42 +0000 URL: https://git.openjdk.org/leyden/commit/5cbd9d1fe19b6d9516233cd1ed8d3ba340b7a1e6 8349959: Test CR6740048.java passes unexpectedly missing CR6740048.xsd Reviewed-by: joehw ! test/jaxp/javax/xml/jaxp/unittest/validation/CR6740048.java Changeset: a8916308 Branch: hermetic-java-runtime Author: Fei Yang Date: 2025-02-22 10:16:51 +0000 URL: https://git.openjdk.org/leyden/commit/a891630817844c8c42994da3b3110925ca4595a0 8350480: RISC-V: Relax assertion about registers in C2_MacroAssembler::minmax_fp Reviewed-by: mli, fjiang ! src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp Changeset: 05b48129 Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-23 02:35:57 +0000 URL: https://git.openjdk.org/leyden/commit/05b481294cbf2ad7c8d917b8e039e7aebcf91104 8350041: Skip test/jdk/java/lang/String/nativeEncoding/StringPlatformChars.java on static JDK Reviewed-by: alanb ! test/jdk/java/lang/String/nativeEncoding/StringPlatformChars.java Changeset: 0795d11b Branch: hermetic-java-runtime Author: David Holmes Date: 2025-02-24 03:13:55 +0000 URL: https://git.openjdk.org/leyden/commit/0795d11bfc0c6640ed7e9f05a17eb2a733d88bc0 8350464: The flags to set the native priority for the VMThread and Java threads need a broader range Reviewed-by: stuefe, shade ! src/hotspot/share/runtime/globals.hpp Changeset: 302bed05 Branch: hermetic-java-runtime Author: Ao Qi Committer: David Holmes Date: 2025-02-24 03:17:56 +0000 URL: https://git.openjdk.org/leyden/commit/302bed055c3b4881f97c584d5953273b9dbc2969 8350499: Minimal build fails with slowdebug builds Reviewed-by: kbarrett, dholmes ! src/hotspot/share/classfile/verifier.cpp Changeset: a5c9a4db Branch: hermetic-java-runtime Author: Christian Hagedorn Date: 2025-02-24 07:28:05 +0000 URL: https://git.openjdk.org/leyden/commit/a5c9a4dbde410c687f05951b8f1d3cf72fcaedc0 8349032: C2: Parse Predicate refactoring in Loop Unswitching broke fix for JDK-8290850 Reviewed-by: kvn, thartmann ! src/hotspot/share/opto/loopPredicate.cpp ! src/hotspot/share/opto/loopnode.hpp ! src/hotspot/share/opto/predicates.cpp ! src/hotspot/share/opto/predicates.hpp + test/hotspot/jtreg/compiler/predicates/TestParsePredicateUCTWithPhi.java Changeset: f755fadc Branch: hermetic-java-runtime Author: Per Minborg Date: 2025-02-24 07:38:29 +0000 URL: https://git.openjdk.org/leyden/commit/f755fadc3d7fd1e09cdc2442531fa724ebb77dce 8349653: Clarify the docs for MemorySegment::reinterpret Reviewed-by: jvernee, mcimadamore ! src/java.base/share/classes/java/lang/foreign/MemorySegment.java Changeset: e410af00 Branch: hermetic-java-runtime Author: Jatin Bhateja Date: 2025-02-24 07:40:17 +0000 URL: https://git.openjdk.org/leyden/commit/e410af00e69587b86536b298b869ddc898fd9862 8342393: Promote commutative vector IR node sharing Reviewed-by: vlivanov, epeter, sviswanathan ! src/hotspot/share/opto/vectornode.cpp ! src/hotspot/share/opto/vectornode.hpp + test/hotspot/jtreg/compiler/vectorapi/VectorCommutativeOperSharingTest.java + test/micro/org/openjdk/bench/jdk/incubator/vector/VectorCommutativeOperSharingBenchmark.java Changeset: 65f79c14 Branch: hermetic-java-runtime Author: Erik ?sterlund Date: 2025-02-24 12:03:42 +0000 URL: https://git.openjdk.org/leyden/commit/65f79c145b7b1b32ed064a37ad4d2b6aca935a4c 8347335: ZGC: Use limitless mark stack memory Reviewed-by: aboldtch, iwalulya ! src/hotspot/share/gc/z/zAddressSpaceLimit.cpp ! src/hotspot/share/gc/z/zAddressSpaceLimit.hpp ! src/hotspot/share/gc/z/zArguments.cpp ! src/hotspot/share/gc/z/zBarrierSet.cpp ! src/hotspot/share/gc/z/zGeneration.cpp ! src/hotspot/share/gc/z/zGeneration.hpp ! src/hotspot/share/gc/z/zGlobals.hpp ! src/hotspot/share/gc/z/zHeap.cpp ! src/hotspot/share/gc/z/zHeap.hpp ! src/hotspot/share/gc/z/zInitialize.cpp ! src/hotspot/share/gc/z/zMark.cpp ! src/hotspot/share/gc/z/zMark.hpp ! src/hotspot/share/gc/z/zMark.inline.hpp ! src/hotspot/share/gc/z/zMarkStack.cpp ! src/hotspot/share/gc/z/zMarkStack.hpp ! src/hotspot/share/gc/z/zMarkStack.inline.hpp - src/hotspot/share/gc/z/zMarkStackAllocator.cpp - src/hotspot/share/gc/z/zMarkStackAllocator.hpp ! src/hotspot/share/gc/z/zMarkTerminate.inline.hpp + src/hotspot/share/gc/z/zMarkingSMR.cpp + src/hotspot/share/gc/z/zMarkingSMR.hpp ! src/hotspot/share/gc/z/zRemembered.cpp ! src/hotspot/share/gc/z/zStat.cpp ! src/hotspot/share/gc/z/zStat.hpp ! src/hotspot/share/gc/z/z_globals.hpp ! src/hotspot/share/runtime/arguments.cpp Changeset: ddb25691 Branch: hermetic-java-runtime Author: Calvin Cheung Date: 2025-02-24 19:54:48 +0000 URL: https://git.openjdk.org/leyden/commit/ddb256911032cd7e6fae17c342261276066d8d25 8280682: Refactor AOT code source validation checks Co-authored-by: Ioi Lam Reviewed-by: iklam, asmehra, dholmes, kvn + src/hotspot/share/cds/aotClassLocation.cpp + src/hotspot/share/cds/aotClassLocation.hpp ! src/hotspot/share/cds/archiveHeapLoader.hpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConstants.cpp ! src/hotspot/share/cds/cdsProtectionDomain.cpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/filemap.hpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/unregisteredClasses.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/classfile/classLoader.hpp ! src/hotspot/share/classfile/classLoader.inline.hpp ! src/hotspot/share/classfile/classLoaderDataShared.cpp ! src/hotspot/share/classfile/classLoaderDataShared.hpp ! src/hotspot/share/classfile/classLoaderExt.cpp ! src/hotspot/share/classfile/classLoaderExt.hpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/memory/allocation.hpp ! src/hotspot/share/oops/klass.hpp ! src/hotspot/share/prims/jvmtiEnv.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/threads.cpp ! test/hotspot/jtreg/runtime/cds/appcds/BootClassPathMismatch.java ! test/hotspot/jtreg/runtime/cds/appcds/ClassPathAttr.java ! test/hotspot/jtreg/runtime/cds/appcds/CommonAppClasspath.java ! test/hotspot/jtreg/runtime/cds/appcds/NonExistClasspath.java ! test/hotspot/jtreg/runtime/cds/appcds/PrintSharedArchiveAndExit.java ! test/hotspot/jtreg/runtime/cds/appcds/SharedArchiveConsistency.java ! test/hotspot/jtreg/runtime/cds/appcds/TraceLongClasspath.java ! test/hotspot/jtreg/runtime/cds/appcds/WrongClasspath.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/ArchiveConsistency.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/WrongTopClasspath.java ! test/hotspot/jtreg/runtime/cds/appcds/jigsaw/modulepath/ModulePathAndFMG.java ! test/lib/jdk/test/lib/cds/CDSArchiveUtils.java Changeset: 39cb493c Branch: hermetic-java-runtime Author: Rajat Mahajan Date: 2025-02-24 20:21:20 +0000 URL: https://git.openjdk.org/leyden/commit/39cb493c365778a1e3a6e753b49d8664733a3e26 8348106: Catch C++ exception in Java_sun_awt_windows_WTaskbarPeer_setOverlayIcon Reviewed-by: abhiscxk, aivanov, azvegint, serb, dmarkov ! src/java.desktop/windows/native/libawt/windows/awt_Taskbar.cpp Changeset: 990d40e9 Branch: hermetic-java-runtime Author: Bradford Wetmore Date: 2025-02-24 22:57:03 +0000 URL: https://git.openjdk.org/leyden/commit/990d40e98da2ceb3261096eaa55550565af58fc1 8350476: Fix typo introduced in JDK-8350147 Reviewed-by: jnimeh, jpai ! src/java.base/share/classes/javax/crypto/KEM.java Changeset: a6cc37fd Branch: hermetic-java-runtime Author: Ioi Lam Date: 2025-02-25 05:38:39 +0000 URL: https://git.openjdk.org/leyden/commit/a6cc37fdbe77ff3c1bd8e2332f67f48e3850e56b 8349888: AOTMode=create crashes with EpsilonGC Reviewed-by: shade, kvn ! src/hotspot/share/cds/classListParser.cpp + test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/LambdaInExcludedClass.java Changeset: e1081cff Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-25 06:12:39 +0000 URL: https://git.openjdk.org/leyden/commit/e1081cffcbec6020bf4cbec9f795b59b6ec1e9ef 8348536: Remove remain SIZE_FORMAT usage after JDK-8347990 Reviewed-by: dholmes, kbarrett ! test/hotspot/gtest/metaspace/test_blocktree.cpp ! test/hotspot/gtest/metaspace/test_metaspace_misc.cpp ! test/hotspot/gtest/nmt/test_nmt_totals.cpp Changeset: ab86a135 Branch: hermetic-java-runtime Author: Adam Sotona Date: 2025-02-25 08:18:52 +0000 URL: https://git.openjdk.org/leyden/commit/ab86a13519a50c5d8a05c493594e6bda329133f4 8350548: java.lang.classfile package javadoc has errors Reviewed-by: liach ! src/java.base/share/classes/java/lang/classfile/package-info.java Changeset: d551daca Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-25 08:19:56 +0000 URL: https://git.openjdk.org/leyden/commit/d551dacaef938cea0cad10047b79a0a7a26dcacb 8350103: Test containers/systemd/SystemdMemoryAwarenessTest.java fails on Linux ppc64le SLES15 SP6 Co-authored-by: Severin Gehwolf Reviewed-by: sgehwolf, asteiner ! test/hotspot/jtreg/containers/systemd/SystemdMemoryAwarenessTest.java Changeset: aa70f0ae Branch: hermetic-java-runtime Author: Jaikiran Pai Date: 2025-02-25 10:57:22 +0000 URL: https://git.openjdk.org/leyden/commit/aa70f0ae8be0bbc80e9d002bf02d0278c8e31bf8 8347348: Clarify that the HTTP server in jdk.httpserver module is not a full featured server Reviewed-by: michaelm, dfuchs ! src/jdk.httpserver/share/classes/module-info.java Changeset: a9c9f7f0 Branch: hermetic-java-runtime Author: Albert Mingkun Yang Date: 2025-02-25 11:14:20 +0000 URL: https://git.openjdk.org/leyden/commit/a9c9f7f0cbb2f2395fef08348bf867ffa8875d73 8192647: GClocker induced GCs can starve threads requiring memory leading to OOME Reviewed-by: tschatzl, iwalulya, egahlin ! src/hotspot/share/gc/g1/g1CollectedHeap.cpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp ! src/hotspot/share/gc/parallel/parallelScavengeHeap.hpp ! src/hotspot/share/gc/parallel/psOldGen.cpp ! src/hotspot/share/gc/parallel/psParallelCompact.cpp ! src/hotspot/share/gc/parallel/psVMOperations.cpp ! src/hotspot/share/gc/serial/defNewGeneration.cpp ! src/hotspot/share/gc/serial/serialHeap.cpp ! src/hotspot/share/gc/serial/serialHeap.hpp ! src/hotspot/share/gc/serial/serialVMOperations.cpp ! src/hotspot/share/gc/serial/tenuredGeneration.cpp ! src/hotspot/share/gc/shared/collectedHeap.cpp ! src/hotspot/share/gc/shared/gcCause.cpp ! src/hotspot/share/gc/shared/gcCause.hpp ! src/hotspot/share/gc/shared/gcLocker.cpp ! src/hotspot/share/gc/shared/gcLocker.hpp ! src/hotspot/share/gc/shared/gcLocker.inline.hpp ! src/hotspot/share/gc/shared/gcTrace.hpp ! src/hotspot/share/gc/shared/gcTraceSend.cpp ! src/hotspot/share/gc/shared/gcVMOperations.cpp ! src/hotspot/share/gc/shared/gcVMOperations.hpp ! src/hotspot/share/gc/shared/gc_globals.hpp ! src/hotspot/share/jfr/metadata/metadata.xml ! src/hotspot/share/prims/downcallLinker.cpp ! src/hotspot/share/prims/jni.cpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/javaThread.hpp ! src/hotspot/share/runtime/mutexLocker.cpp ! src/hotspot/share/runtime/mutexLocker.hpp ! src/hotspot/share/runtime/safepoint.cpp ! src/hotspot/share/runtime/sharedRuntime.cpp ! src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/GCCause.java ! src/jdk.jfr/share/conf/jfr/default.jfc ! src/jdk.jfr/share/conf/jfr/profile.jfc ! test/hotspot/jtreg/ProblemList.txt - test/hotspot/jtreg/gc/stress/gclocker/TestExcessGCLockerCollections.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithParallelOld.java ! test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithSerial.java - test/jdk/jdk/jfr/event/gc/detailed/TestGCLockerEvent.java ! test/lib/jdk/test/lib/jfr/EventNames.java ! test/lib/jdk/test/whitebox/WhiteBox.java Changeset: c413549e Branch: hermetic-java-runtime Author: Coleen Phillimore Date: 2025-02-25 12:35:54 +0000 URL: https://git.openjdk.org/leyden/commit/c413549eb775f4209416c718dc9aa0748144a6b4 8349860: Make Class.isArray(), Class.isInterface() and Class.isPrimitive() non-native Reviewed-by: dlong, rriggs, vlivanov, yzheng, liach ! src/hotspot/share/c1/c1_Canonicalizer.cpp ! src/hotspot/share/c1/c1_Compiler.cpp ! src/hotspot/share/c1/c1_LIRGenerator.cpp ! src/hotspot/share/c1/c1_LIRGenerator.hpp ! src/hotspot/share/classfile/javaClasses.cpp ! src/hotspot/share/classfile/javaClasses.hpp ! src/hotspot/share/classfile/javaClasses.inline.hpp ! src/hotspot/share/classfile/vmIntrinsics.cpp ! src/hotspot/share/classfile/vmIntrinsics.hpp ! src/hotspot/share/include/jvm.h ! src/hotspot/share/opto/c2compiler.cpp ! src/hotspot/share/opto/library_call.cpp ! src/hotspot/share/prims/jvm.cpp ! src/java.base/share/classes/java/lang/Class.java ! src/java.base/share/classes/jdk/internal/reflect/Reflection.java ! src/java.base/share/native/libjava/Class.c ! test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestResolvedJavaType.java ! test/jdk/java/lang/reflect/AccessibleObject/ModuleSetAccessibleTest.java ! test/jdk/java/lang/reflect/AccessibleObject/TrySetAccessibleTest.java ! test/jdk/jdk/internal/reflect/Reflection/Filtering.java Changeset: 8cfebc41 Branch: hermetic-java-runtime Author: Kevin Walls Date: 2025-02-25 12:54:30 +0000 URL: https://git.openjdk.org/leyden/commit/8cfebc41dc8ec7b0d24d9c467b91de82d28b73fc 8350571: Remove mention of Tonga test suite from JMX tests Reviewed-by: cjplummer, lmesnik, sspitsyn ! test/jdk/javax/management/MBeanServer/ExceptionFactory.java ! test/jdk/javax/management/MBeanServer/ExceptionTest.java ! test/jdk/javax/management/mxbean/Utils.java ! test/jdk/javax/management/query/SupportedQueryTypesTest.java ! test/jdk/javax/management/security/Utils.java Changeset: cfeb7d6c Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-25 13:30:54 +0000 URL: https://git.openjdk.org/leyden/commit/cfeb7d6c964f63184c939f6f0625c6e7f1afdc31 8350497: os::create_thread unify init thread attributes part across UNIX platforms Reviewed-by: dholmes ! src/hotspot/os/aix/os_aix.cpp ! src/hotspot/os/bsd/os_bsd.cpp Changeset: 62f39bd6 Branch: hermetic-java-runtime Author: Johan Sj?len Date: 2025-02-25 14:30:24 +0000 URL: https://git.openjdk.org/leyden/commit/62f39bd6468d1c99bb0d6af6a96972bae96a7588 8350636: Potential null-pointer dereference in MallocSiteTable::new_entry Reviewed-by: dholmes ! src/hotspot/share/nmt/mallocSiteTable.cpp Changeset: b17c0b63 Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-25 14:38:19 +0000 URL: https://git.openjdk.org/leyden/commit/b17c0b63a15246967f7cb24ba6089f2ef13e900e 8350585: InlineSecondarySupersTest must be guarded on ppc64 by COMPILER2 Reviewed-by: amitkumar, mdoerr ! src/hotspot/cpu/ppc/stubGenerator_ppc.cpp Changeset: 08bc59da Branch: hermetic-java-runtime Author: Stuart Marks Date: 2025-02-25 15:18:30 +0000 URL: https://git.openjdk.org/leyden/commit/08bc59da9b66c6504a2d2712feebf37cc5eb2d3e 8138614: (spec str) StringBuffer and StringBuilder methods improperly require "new" String to be returned Reviewed-by: rgiulietti, shade, alanb, rriggs, liach ! src/java.base/share/classes/java/lang/AbstractStringBuilder.java Changeset: 50239716 Branch: hermetic-java-runtime Author: Mark Powers Date: 2025-02-25 15:21:07 +0000 URL: https://git.openjdk.org/leyden/commit/50239716403732fe8af73b4b6f006b6a4b7b22db 8267068: Incomplete @throws javadoc for various javax.crypto.spec classes Reviewed-by: valeriep, jnimeh ! src/java.base/share/classes/javax/crypto/spec/IvParameterSpec.java ! src/java.base/share/classes/javax/crypto/spec/RC2ParameterSpec.java ! src/java.base/share/classes/javax/crypto/spec/RC5ParameterSpec.java ! src/java.base/share/classes/javax/crypto/spec/SecretKeySpec.java Changeset: dea7a9f0 Branch: hermetic-java-runtime Author: Volodymyr Paprotski Committer: Sandhya Viswanathan Date: 2025-02-25 16:28:25 +0000 URL: https://git.openjdk.org/leyden/commit/dea7a9f0d640e5234bafe2157aecd942c71d5de5 8350516: Update model numbers for ECore-based cpus Reviewed-by: sviswanathan, vaivanov ! src/hotspot/cpu/x86/vm_version_x86.cpp Changeset: c5992ca2 Branch: hermetic-java-runtime Author: Mikhail Yankelevich Committer: Weijun Wang Date: 2025-02-25 18:24:42 +0000 URL: https://git.openjdk.org/leyden/commit/c5992ca27b7dddaaaf217b62445fdc48e7eaf240 8349533: Refactor validator tests shell files to java Reviewed-by: weijun ! test/jdk/sun/security/validator/CertReplace.java - test/jdk/sun/security/validator/certreplace.sh - test/jdk/sun/security/validator/samedn.sh Changeset: 0151b15b Branch: hermetic-java-runtime Author: Leonid Mesnik Date: 2025-02-25 19:19:40 +0000 URL: https://git.openjdk.org/leyden/commit/0151b15b7cc077a30b00f2af4a5e3f831d1d92cb 8348367: Remove hotspot_not_fast_compiler and hotspot_slow_compiler test groups Reviewed-by: thartmann, chagedorn ! test/hotspot/jtreg/TEST.groups Changeset: 829d7a84 Branch: hermetic-java-runtime Author: Leonid Mesnik Date: 2025-02-25 19:20:05 +0000 URL: https://git.openjdk.org/leyden/commit/829d7a845e18ec483379abf3a3fccb596d899f25 8339889: Several compiler tests ignore vm flags and not marked as flagless Reviewed-by: thartmann ! test/hotspot/jtreg/compiler/c2/TestReduceAllocationAndHeapDump.java ! test/hotspot/jtreg/compiler/calls/NativeCalls.java ! test/hotspot/jtreg/compiler/debug/TestStress.java ! test/hotspot/jtreg/compiler/inlining/TestDuplicatedLateInliningOutput.java Changeset: d422abc5 Branch: hermetic-java-runtime Author: Ioi Lam Date: 2025-02-25 19:25:18 +0000 URL: https://git.openjdk.org/leyden/commit/d422abc55aa93d8603d29d269dfb3325bd77f34d 8350668: has_extra_module_paths in filemap.cpp may be uninitialized Reviewed-by: ccheung, shade ! src/hotspot/share/cds/filemap.cpp Changeset: a3188e04 Branch: hermetic-java-runtime Author: Archie Cobbs Date: 2025-02-25 19:39:00 +0000 URL: https://git.openjdk.org/leyden/commit/a3188e0406bcd69468de0444038525d3d069699f 8349991: GraphUtils.java can use String.replace() instead of String.replaceAll() Reviewed-by: mcimadamore ! src/jdk.compiler/share/classes/com/sun/tools/javac/util/GraphUtils.java Changeset: b78043fd Branch: hermetic-java-runtime Author: Archie Cobbs Date: 2025-02-25 19:39:21 +0000 URL: https://git.openjdk.org/leyden/commit/b78043fdc64dba62293631ad0cc263029e8dfb1e 8320220: Compilation of cyclic hierarchy causes infinite recursion Reviewed-by: vromero, jlahoda ! src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Check.java + test/langtools/tools/javac/ClassCycle/ClassCycle4.java + test/langtools/tools/javac/ClassCycle/ClassCycle4.out Changeset: d4fdc796 Branch: hermetic-java-runtime Author: Damon Nguyen Date: 2025-02-25 19:40:39 +0000 URL: https://git.openjdk.org/leyden/commit/d4fdc796aac8ece930c28579d285b21acf8e6ddb 8344981: [REDO] JDK-6672644 JComboBox still scrolling if switch to another window and return back Co-authored-by: Alexander Zvegintsev Reviewed-by: azvegint, psadhukhan, honkar ! src/java.desktop/share/classes/javax/swing/plaf/basic/BasicScrollBarUI.java + test/jdk/javax/swing/JComboBox/JComboBoxScrollFocusTest.java Changeset: 2efb0336 Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-25 21:53:24 +0000 URL: https://git.openjdk.org/leyden/commit/2efb0336e0c257c34f9e49a50cbad1704691582e 8350601: Miscellaneous updates to jpackage test lib Reviewed-by: almatvee ! test/jdk/tools/jpackage/helpers-test/jdk/jpackage/test/TKitTest.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/AdditionalLauncher.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/JPackageCommand.java ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TKit.java ! test/jdk/tools/jpackage/share/AppImagePackageTest.java Changeset: 267d69be Branch: hermetic-java-runtime Author: Alexey Semenyuk Date: 2025-02-25 22:49:26 +0000 URL: https://git.openjdk.org/leyden/commit/267d69bed6265ec2820f17eb7534ec64d80ad093 8326447: jpackage creates Windows installers that cannot be signed Reviewed-by: almatvee ! src/jdk.jpackage/share/man/jpackage.md ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WinExeBundler.java ! src/jdk.jpackage/windows/classes/jdk/jpackage/internal/resources/WinResources.properties ! test/jdk/tools/jpackage/helpers/jdk/jpackage/test/LauncherIconVerifier.java + test/jdk/tools/jpackage/helpers/jdk/jpackage/test/WinExecutableIconVerifier.java + test/jdk/tools/jpackage/resources/read-executable-icon.ps1 + test/jdk/tools/jpackage/windows/WinInstallerResourceTest.java Changeset: 86024ebd Branch: hermetic-java-runtime Author: Ioi Lam Date: 2025-02-25 22:56:25 +0000 URL: https://git.openjdk.org/leyden/commit/86024ebdb0f06517925c03e52246fbda0bad8f7c 8348426: Generate binary file for -XX:AOTMode=record -XX:AOTConfiguration=file Reviewed-by: ccheung, asmehra, kvn, iveresov ! src/hotspot/share/cds/aotClassLocation.cpp ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveUtils.hpp ! src/hotspot/share/cds/archiveUtils.inline.hpp ! src/hotspot/share/cds/cdsConfig.cpp ! src/hotspot/share/cds/cdsConfig.hpp ! src/hotspot/share/cds/cds_globals.hpp ! src/hotspot/share/cds/cppVtables.cpp ! src/hotspot/share/cds/dumpTimeClassInfo.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.cpp ! src/hotspot/share/cds/filemap.hpp + src/hotspot/share/cds/finalImageRecipes.cpp + src/hotspot/share/cds/finalImageRecipes.hpp ! src/hotspot/share/cds/heapShared.cpp ! src/hotspot/share/cds/heapShared.hpp ! src/hotspot/share/cds/lambdaFormInvokers.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/runTimeClassInfo.hpp ! src/hotspot/share/classfile/moduleEntry.cpp ! src/hotspot/share/classfile/systemDictionary.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! src/hotspot/share/classfile/systemDictionaryShared.hpp ! src/hotspot/share/include/cds.h ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/oops/constantPool.cpp ! src/hotspot/share/oops/instanceKlass.cpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/java.cpp ! src/hotspot/share/runtime/threads.cpp ! test/hotspot/jtreg/TEST.groups ! test/hotspot/jtreg/runtime/cds/ArchiveDoesNotExist.java ! test/hotspot/jtreg/runtime/cds/appcds/AOTFlags.java + test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/AOTLoaderConstraintsTest.java + test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/BootClass.java ! test/hotspot/jtreg/runtime/cds/appcds/aotClassLinking/BulkLoaderTest.java ! test/hotspot/jtreg/runtime/cds/appcds/applications/JavacBench.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/ArchiveConsistency.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/TestAutoCreateSharedArchive.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/TestAutoCreateSharedArchiveUpgrade.java ! test/hotspot/jtreg/runtime/cds/appcds/jvmti/dumpingWithAgent/DumpingWithJavaAgent.java ! test/lib/jdk/test/lib/cds/CDSAppTester.java Changeset: c8a521fd Branch: hermetic-java-runtime Author: Naoto Sato Date: 2025-02-25 23:03:18 +0000 URL: https://git.openjdk.org/leyden/commit/c8a521fddac9d42fe93ea9b3ab89e804bc48bf4e 8345213: JVM Prefers /etc/timezone Over /etc/localtime on Debian 12 Reviewed-by: joehw, jpai, alanb ! src/java.base/unix/native/libjava/TimeZone_md.c Changeset: 037e4711 Branch: hermetic-java-runtime Author: Calvin Cheung Date: 2025-02-25 23:49:52 +0000 URL: https://git.openjdk.org/leyden/commit/037e47112bdf2fa2324f7c58198f6d433f17d9fd 8350666: cmp-baseline builds fail after JDK-8280682 Reviewed-by: iklam ! src/hotspot/share/cds/aotClassLocation.cpp Changeset: f529bf71 Branch: hermetic-java-runtime Author: Patrick Zhang Committer: Andrew Haley Date: 2025-02-26 09:07:07 +0000 URL: https://git.openjdk.org/leyden/commit/f529bf712d8946584999dfc98abea60c22c97167 8350483: AArch64: turn on signum intrinsics by default on Ampere CPUs Reviewed-by: aph ! src/hotspot/cpu/aarch64/vm_version_aarch64.cpp Changeset: a70eba8e Branch: hermetic-java-runtime Author: Thomas Stuefe Date: 2025-02-26 09:51:56 +0000 URL: https://git.openjdk.org/leyden/commit/a70eba8e4212c2c7125475f69b3952197e7a8ce3 8330174: Protection zone for easier detection of accidental zero-nKlass use Co-authored-by: Ioi Lam Reviewed-by: iklam, rkennke ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveBuilder.hpp ! src/hotspot/share/cds/archiveUtils.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.hpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/metaspaceShared.hpp ! src/hotspot/share/include/cds.h ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/oops/compressedKlass.cpp ! src/hotspot/share/oops/compressedKlass.hpp ! src/hotspot/share/oops/compressedKlass.inline.hpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/os.cpp + test/hotspot/jtreg/runtime/ErrorHandling/AccessZeroNKlassHitsProtectionZone.java ! test/lib/jdk/test/whitebox/WhiteBox.java Changeset: a4310464 Branch: hermetic-java-runtime Author: Tagir F. Valeev Date: 2025-02-26 10:08:29 +0000 URL: https://git.openjdk.org/leyden/commit/a43104640420fbd82868788ccd8a3a8e938f365a 8350518: org.openjdk.bench.java.util.TreeMapUpdate.compute fails with "java.lang.IllegalArgumentException: key out of range" Reviewed-by: liach, skuksenko ! test/micro/org/openjdk/bench/java/util/TreeMapUpdate.java Changeset: aac9cb45 Branch: hermetic-java-runtime Author: Thomas Schatzl Date: 2025-02-26 10:30:01 +0000 URL: https://git.openjdk.org/leyden/commit/aac9cb4537b13a4af123ae76f29359e851dc4c82 8349906: G1: Improve initial survivor rate for newly used young regions Reviewed-by: kbarrett, iwalulya ! src/hotspot/share/gc/g1/g1SurvRateGroup.cpp Changeset: a0dd5654 Branch: hermetic-java-runtime Author: Thomas Schatzl Date: 2025-02-26 11:31:48 +0000 URL: https://git.openjdk.org/leyden/commit/a0dd56543219343306aea99b684b5e2cb04c7d76 8350643: G1: Make loop iteration variable type correspond to limit in G1SurvRateGroup Reviewed-by: ayang, kbarrett ! src/hotspot/share/gc/g1/g1SurvRateGroup.cpp Changeset: 1e18fffe Branch: hermetic-java-runtime Author: Coleen Phillimore Date: 2025-02-26 11:49:09 +0000 URL: https://git.openjdk.org/leyden/commit/1e18fffee456382c4eeb017b3fad0dc99ccaad35 8328473: StringTable and SymbolTable statistics delay time to safepoint Reviewed-by: shade, eosterlund ! src/hotspot/share/classfile/stringTable.cpp ! src/hotspot/share/classfile/symbolTable.cpp ! src/hotspot/share/utilities/concurrentHashTable.hpp ! src/hotspot/share/utilities/concurrentHashTable.inline.hpp ! src/hotspot/share/utilities/concurrentHashTableTasks.inline.hpp Changeset: e7d4b360 Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-26 12:40:53 +0000 URL: https://git.openjdk.org/leyden/commit/e7d4b360fe27585f1a021fd1d1da1fda7f27a37c 8350667: Remove startThread_lock() and _startThread_lock on AIX Reviewed-by: stuefe, jkern ! src/hotspot/os/aix/osThread_aix.cpp ! src/hotspot/os/aix/osThread_aix.hpp ! src/hotspot/os/aix/os_aix.cpp Changeset: ea2c9238 Branch: hermetic-java-runtime Author: Johan Sj?len Date: 2025-02-26 12:51:35 +0000 URL: https://git.openjdk.org/leyden/commit/ea2c92384927a22dd1e1e8676723c7cc720a128b 8323807: Async UL: Add a stalling mode to async UL Reviewed-by: dholmes, aboldtch ! src/hotspot/share/logging/logAsyncWriter.cpp ! src/hotspot/share/logging/logAsyncWriter.hpp ! src/hotspot/share/logging/logConfiguration.cpp ! src/hotspot/share/logging/logConfiguration.hpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/globals.hpp ! src/java.base/share/man/java.md ! test/hotspot/gtest/logging/test_asynclog.cpp + test/hotspot/jtreg/runtime/logging/StressAsyncUL.java Changeset: 0f822681 Branch: hermetic-java-runtime Author: Matthew Donovan Date: 2025-02-26 14:14:33 +0000 URL: https://git.openjdk.org/leyden/commit/0f82268134df65bbc65ecda158d25f708f18d150 8345598: Upgrade NSS binaries for interop tests Reviewed-by: weijun, rhalade ! test/jdk/sun/security/pkcs11/PKCS11Test.java Changeset: 27317123 Branch: hermetic-java-runtime Author: Hannes Walln?fer Date: 2025-02-26 14:59:18 +0000 URL: https://git.openjdk.org/leyden/commit/2731712383937ce7213c4c2b89f8c041708a3f90 8287749: Re-enable javadoc -serialwarn option Reviewed-by: erikj ! make/Docs.gmk ! make/scripts/genExceptions.sh Changeset: bd112c4f Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-26 15:00:47 +0000 URL: https://git.openjdk.org/leyden/commit/bd112c4fab8c6b6a8181d4629009b6cb408727a1 8350443: GHA: Split static-libs-bundles into a separate job Reviewed-by: ihse, yzheng ! .github/actions/upload-bundles/action.yml ! .github/workflows/build-linux.yml ! .github/workflows/main.yml Changeset: 3e46480d Branch: hermetic-java-runtime Author: Thomas Stuefe Date: 2025-02-26 15:57:37 +0000 URL: https://git.openjdk.org/leyden/commit/3e46480dcfabf79b74cc371eaa84dce2e252f3da 8350770: [BACKOUT] Protection zone for easier detection of accidental zero-nKlass use Reviewed-by: mdoerr, rkennke ! src/hotspot/share/cds/archiveBuilder.cpp ! src/hotspot/share/cds/archiveBuilder.hpp ! src/hotspot/share/cds/archiveUtils.cpp ! src/hotspot/share/cds/dynamicArchive.cpp ! src/hotspot/share/cds/filemap.hpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/cds/metaspaceShared.hpp ! src/hotspot/share/include/cds.h ! src/hotspot/share/memory/metaspace.cpp ! src/hotspot/share/oops/compressedKlass.cpp ! src/hotspot/share/oops/compressedKlass.hpp ! src/hotspot/share/oops/compressedKlass.inline.hpp ! src/hotspot/share/prims/whitebox.cpp ! src/hotspot/share/runtime/os.cpp - test/hotspot/jtreg/runtime/ErrorHandling/AccessZeroNKlassHitsProtectionZone.java ! test/lib/jdk/test/whitebox/WhiteBox.java Changeset: 9477c705 Branch: hermetic-java-runtime Author: Brian Burkhalter Date: 2025-02-26 16:24:25 +0000 URL: https://git.openjdk.org/leyden/commit/9477c705c0bd5ce2d445abb5ca44d46656fc315f 8024695: new File("").exists() returns false whereas it is the current working directory Reviewed-by: alanb, rriggs, lancea ! src/java.base/share/classes/java/io/File.java ! src/java.base/share/classes/java/io/FileSystem.java ! src/java.base/unix/classes/java/io/UnixFileSystem.java ! src/java.base/windows/classes/java/io/WinNTFileSystem.java ! test/jdk/java/io/File/EmptyPath.java Changeset: ec6624b5 Branch: hermetic-java-runtime Author: Aleksey Shipilev Date: 2025-02-26 16:41:16 +0000 URL: https://git.openjdk.org/leyden/commit/ec6624b54eaf5c0f94bd760d2e9fa8b55717c350 8350649: Class unloading accesses/resurrects dead Java mirror after JDK-8346567 Reviewed-by: coleenp, egahlin ! src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSet.cpp ! src/hotspot/share/oops/klass.hpp Changeset: 9ec46968 Branch: hermetic-java-runtime Author: Xiaolong Peng Committer: Aleksey Shipilev Date: 2025-02-26 17:29:12 +0000 URL: https://git.openjdk.org/leyden/commit/9ec46968fbfddf99a8349cb6903d24b1c2fdaf1d 8350313: Include timings for leaving safepoint in safepoint logging Reviewed-by: shade, dholmes ! src/hotspot/share/runtime/safepoint.cpp ! src/hotspot/share/runtime/safepoint.hpp Changeset: e43960a0 Branch: hermetic-java-runtime Author: David Holmes Date: 2025-02-26 20:14:11 +0000 URL: https://git.openjdk.org/leyden/commit/e43960a0170bf29b28ff4733e1c8c927947fb0bb 8350616: Skip ValidateHazardPtrsClosure in non-debug builds Reviewed-by: kbarrett, tschatzl, shade ! src/hotspot/share/runtime/threadSMR.cpp Changeset: 78c18cfb Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-26 23:23:42 +0000 URL: https://git.openjdk.org/leyden/commit/78c18cfbcee92ba170810582e238b40b64805e5a 8349399: GHA: Add static-jdk build on linux-x64 Reviewed-by: shade, ihse ! .github/workflows/main.yml Changeset: b29f8b04 Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-27 06:15:59 +0000 URL: https://git.openjdk.org/leyden/commit/b29f8b04780bffff2b25acb95f22b4fdf83f3724 8350665: SIZE_FORMAT_HEX macro undefined in gtest Reviewed-by: coleenp, stuefe ! test/hotspot/gtest/runtime/test_virtualMemoryTracker.cpp Changeset: bb48b731 Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-27 06:16:57 +0000 URL: https://git.openjdk.org/leyden/commit/bb48b7319c020f9bb135c0bdf3e8809d0314c837 8350723: RISC-V: debug.cpp help() is missing riscv line for pns Reviewed-by: fyang ! src/hotspot/share/utilities/debug.cpp Changeset: 885338b5 Branch: hermetic-java-runtime Author: Emanuel Peter Date: 2025-02-27 06:58:43 +0000 URL: https://git.openjdk.org/leyden/commit/885338b5f38ed05d8b91efc0178b371f2f89310e 8323582: C2 SuperWord AlignVector: misaligned vector memory access with unaligned native memory Reviewed-by: roland, kvn ! src/hotspot/share/jvmci/vmStructs_jvmci.cpp ! src/hotspot/share/opto/c2_globals.hpp ! src/hotspot/share/opto/cfgnode.hpp ! src/hotspot/share/opto/classes.hpp ! src/hotspot/share/opto/graphKit.cpp ! src/hotspot/share/opto/ifnode.cpp ! src/hotspot/share/opto/loopTransform.cpp ! src/hotspot/share/opto/loopUnswitch.cpp ! src/hotspot/share/opto/loopnode.cpp ! src/hotspot/share/opto/loopnode.hpp ! src/hotspot/share/opto/loopopts.cpp ! src/hotspot/share/opto/mempointer.hpp ! src/hotspot/share/opto/node.hpp ! src/hotspot/share/opto/opaquenode.hpp ! src/hotspot/share/opto/phasetype.hpp ! src/hotspot/share/opto/predicates.cpp ! src/hotspot/share/opto/predicates.hpp ! src/hotspot/share/opto/superword.cpp ! src/hotspot/share/opto/traceAutoVectorizationTag.hpp ! src/hotspot/share/opto/vectorization.cpp ! src/hotspot/share/opto/vectorization.hpp ! src/hotspot/share/opto/vtransform.cpp ! src/hotspot/share/opto/vtransform.hpp ! src/hotspot/share/runtime/deoptimization.cpp ! src/hotspot/share/runtime/deoptimization.hpp ! src/hotspot/share/runtime/vmStructs.cpp + test/hotspot/jtreg/compiler/loopopts/superword/TestMemorySegmentUnalignedAddress.java Changeset: e4d3c97c Branch: hermetic-java-runtime Author: Richard Reingruber Date: 2025-02-27 09:24:15 +0000 URL: https://git.openjdk.org/leyden/commit/e4d3c97c0f388fc4b1684b78844f2166277ffd91 8350111: [PPC] AsyncGetCallTrace crashes when called while handling SIGTRAP Reviewed-by: mdoerr, stuefe ! src/hotspot/cpu/ppc/frame_ppc.cpp Changeset: 4522f128 Branch: hermetic-java-runtime Author: Andrew Dinn Date: 2025-02-27 09:31:14 +0000 URL: https://git.openjdk.org/leyden/commit/4522f128a3953e3ae885f96c463cb581eaa1e1e7 8349921: Crash in codeBuffer.cpp:1004: guarantee(sect->end() <= tend) failed: sanity Reviewed-by: kvn, dlong ! src/hotspot/cpu/aarch64/stubDeclarations_aarch64.hpp Changeset: 01bd7e41 Branch: hermetic-java-runtime Author: Xiaolong Peng Date: 2025-02-27 09:49:29 +0000 URL: https://git.openjdk.org/leyden/commit/01bd7e417ee3d39067370e616660b7f5c723dc26 8350314: Shenandoah: Capture thread state sync times in GC timings Reviewed-by: ysr, shade, wkemper ! src/hotspot/share/gc/shenandoah/shenandoahConcurrentGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahDegeneratedGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahFullGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahOldGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahPhaseTimings.hpp ! src/hotspot/share/gc/shenandoah/shenandoahVMOperations.cpp Changeset: acc6f19c Branch: hermetic-java-runtime Author: SendaoYan Date: 2025-02-27 11:06:50 +0000 URL: https://git.openjdk.org/leyden/commit/acc6f19cecd1c55afab3f4d6789cfa90b472d621 8350614: [JMH] jdk.incubator.vector.VectorCommutativeOperSharingBenchmark fails Reviewed-by: redestad ! test/micro/org/openjdk/bench/jdk/incubator/vector/VectorCommutativeOperSharingBenchmark.java Changeset: 63e0fc43 Branch: hermetic-java-runtime Author: Emanuel Peter Date: 2025-02-27 11:29:02 +0000 URL: https://git.openjdk.org/leyden/commit/63e0fc4331df5443f21a402153ceda87d99dbd46 8350841: ProblemList jdk/incubator/vector/Long256VectorTests.java Reviewed-by: thartmann ! test/jdk/ProblemList.txt Changeset: 799ac528 Branch: hermetic-java-runtime Author: Ramkumar Sunderbabu Committer: SendaoYan Date: 2025-02-27 12:58:35 +0000 URL: https://git.openjdk.org/leyden/commit/799ac5288efbbb89e21319cd45657c8f817ad680 8314840: 3 gc/epsilon tests ignore external vm options Reviewed-by: tschatzl ! test/hotspot/jtreg/gc/epsilon/TestDieDefault.java ! test/hotspot/jtreg/gc/epsilon/TestDieWithHeapDump.java ! test/hotspot/jtreg/gc/epsilon/TestDieWithOnError.java Changeset: e80b76b6 Branch: hermetic-java-runtime Author: Robert Toyonaga Committer: SendaoYan Date: 2025-02-27 12:59:47 +0000 URL: https://git.openjdk.org/leyden/commit/e80b76b663c6b82a353665fd68819cc9295ec429 8276995: Bug in jdk.jfr.event.gc.collection.TestSystemGC Reviewed-by: egahlin, dholmes ! test/jdk/jdk/jfr/event/gc/collection/TestSystemGC.java Changeset: d6d94472 Branch: hermetic-java-runtime Author: Matthias Baesken Date: 2025-02-27 13:34:38 +0000 URL: https://git.openjdk.org/leyden/commit/d6d94472c21b1fa4839f548b85908967057c3f07 8350786: Some java/lang jtreg tests miss requires vm.hasJFR Reviewed-by: alanb ! test/jdk/java/lang/Thread/ThreadSleepEvent.java ! test/jdk/java/lang/Thread/virtual/JfrEvents.java ! test/jdk/java/lang/Thread/virtual/MonitorPinnedEvents.java Changeset: 3c9d64eb Branch: hermetic-java-runtime Author: Kuai Wei Committer: Christian Hagedorn Date: 2025-02-27 13:55:59 +0000 URL: https://git.openjdk.org/leyden/commit/3c9d64eb07c5bc9006ef05b0ab81bdc318cccc20 8350858: [IR Framework] Some tests failed on Cascade Lake Reviewed-by: chagedorn, epeter ! test/hotspot/jtreg/compiler/lib/ir_framework/driver/irmatching/parser/VMInfo.java Changeset: 8323ddfe Branch: hermetic-java-runtime Author: Nizar Benalla Date: 2025-02-27 14:52:18 +0000 URL: https://git.openjdk.org/leyden/commit/8323ddfe189e8a189176a37746985c2473ebab3b 8346659: SnippetTaglet should report an error if provided ambiguous links Reviewed-by: hannesw, liach ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/taglets/SnippetTaglet.java ! src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/resources/doclets.properties + test/langtools/jdk/javadoc/doclet/ReproducibleSnippet/ReproducibleSnippetTest.java ! test/langtools/jdk/javadoc/doclet/TestGlobalHtml/TestGlobalHtml.java Changeset: 939815fd Branch: hermetic-java-runtime Author: Roland Westrelin Date: 2025-02-27 16:47:31 +0000 URL: https://git.openjdk.org/leyden/commit/939815fdcfd046b00b331e085c7b6c5ced0f5dbe 8347040: C2: assert(!loop->_body.contains(in)) failed Reviewed-by: chagedorn, kvn ! src/hotspot/share/opto/loopnode.cpp + test/hotspot/jtreg/compiler/longcountedloops/TestAssertWhenOuterStripMinedLoopRemoved.java Changeset: 2fd71561 Branch: hermetic-java-runtime Author: Marc Chevalier Committer: Vladimir Kozlov Date: 2025-02-27 18:06:50 +0000 URL: https://git.openjdk.org/leyden/commit/2fd71561107a5226f44e1732b646e43a82566eb3 8347426: Invalid value used for enum Cell in iTypeFlow::StateVector::meet_exception Reviewed-by: dlong, kvn ! src/hotspot/share/ci/ciTypeFlow.cpp ! src/hotspot/share/ci/ciTypeFlow.hpp Changeset: 3ae80bfb Branch: hermetic-java-runtime Author: Kelvin Nilsen Date: 2025-02-27 18:40:20 +0000 URL: https://git.openjdk.org/leyden/commit/3ae80bfb6085e1a6bcb551c7b0be8f27b6f9fde9 8349766: GenShen: Bad progress after degen does not always need full gc Reviewed-by: wkemper ! src/hotspot/share/gc/shenandoah/shenandoahDegeneratedGC.cpp ! src/hotspot/share/gc/shenandoah/shenandoahDegeneratedGC.hpp Changeset: f1398ecb Branch: hermetic-java-runtime Author: Vladimir Ivanov Committer: Derek White Date: 2025-02-27 20:35:58 +0000 URL: https://git.openjdk.org/leyden/commit/f1398ecbe4a650d8d8c21fabb1b8e2e9600fdfec 8350701: [JMH] test foreign.AllocFromSliceTest failed with Exception for size>1024 Reviewed-by: pminborg ! test/micro/org/openjdk/bench/java/lang/foreign/AllocFromSliceTest.java Changeset: b0062eff Branch: hermetic-java-runtime Author: Jiangli Zhou Date: 2025-02-27 14:41:57 +0000 URL: https://git.openjdk.org/leyden/commit/b0062eff411fb3d39a5cb909962c95158904b5af Merge branch 'master' into hermetic-java-runtime ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/threads.cpp ! src/hotspot/share/classfile/classLoader.cpp ! src/hotspot/share/logging/logTag.hpp ! src/hotspot/share/runtime/arguments.cpp ! src/hotspot/share/runtime/globals.hpp ! src/hotspot/share/runtime/threads.cpp From iklam at openjdk.org Fri Feb 28 01:53:34 2025 From: iklam at openjdk.org (Ioi Lam) Date: Fri, 28 Feb 2025 01:53:34 GMT Subject: git: openjdk/leyden: premain: 8350916: Remove misleading warning "Cannot dump shared archive while using shared archive" Message-ID: <1935bafc-61e6-4b2f-88d1-1a17d5dda5fe@openjdk.org> Changeset: 19b7eb3c Branch: premain Author: Ioi Lam Date: 2025-02-27 17:38:45 +0000 URL: https://git.openjdk.org/leyden/commit/19b7eb3c5e9536b7b6f597ca81f6559f38401ccd 8350916: Remove misleading warning "Cannot dump shared archive while using shared archive" ! src/hotspot/share/cds/cdsConfig.cpp From iklam at openjdk.org Fri Feb 28 03:46:48 2025 From: iklam at openjdk.org (Ioi Lam) Date: Fri, 28 Feb 2025 03:46:48 GMT Subject: git: openjdk/leyden: premain: Removed "Skipping " warning logs that were printed by mistake; also moved other "Skipping" logs in debug level to reduce verbosity Message-ID: <45146f1a-7429-4203-bf8a-1672b7db51f1@openjdk.org> Changeset: 4d75c121 Branch: premain Author: Ioi Lam Date: 2025-02-27 19:07:27 +0000 URL: https://git.openjdk.org/leyden/commit/4d75c12128e6476d8f98b14db3db56bf81c32e34 Removed "Skipping " warning logs that were printed by mistake; also moved other "Skipping" logs in debug level to reduce verbosity ! src/hotspot/share/cds/aotArtifactFinder.cpp ! src/hotspot/share/cds/metaspaceShared.cpp ! src/hotspot/share/classfile/systemDictionaryShared.cpp ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/LambdaCustomLoader.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/LambdaProxyCallerIsHidden.java ! test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/RegularHiddenClass.java From iklam at openjdk.org Fri Feb 28 05:14:48 2025 From: iklam at openjdk.org (Ioi Lam) Date: Fri, 28 Feb 2025 05:14:48 GMT Subject: git: openjdk/leyden: premain: 8338613: PetClinic classpath is not windows compatible Message-ID: <48ca8c9b-a15b-4d99-bbb9-f4af7e59a27a@openjdk.org> Changeset: 4535f4f0 Branch: premain Author: Ioi Lam Date: 2025-02-27 21:11:42 +0000 URL: https://git.openjdk.org/leyden/commit/4535f4f0984dfdcbd137e66c88e1638b5b30f919 8338613: PetClinic classpath is not windows compatible ! test/hotspot/jtreg/ProblemList.txt ! test/hotspot/jtreg/runtime/cds/appcds/applications/SpringPetClinic.java From duke at openjdk.org Fri Feb 28 23:40:14 2025 From: duke at openjdk.org (duke) Date: Fri, 28 Feb 2025 23:40:14 GMT Subject: git: openjdk/leyden: premain: More cleanup Message-ID: <19834011-1813-48bd-96a8-5b04beb8d62d@openjdk.org> Changeset: 432069bf Branch: premain Author: Igor Veresov Date: 2025-02-28 15:38:55 +0000 URL: https://git.openjdk.org/leyden/commit/432069bf72af6c26a922a0fe9a6b20b06c7c0599 More cleanup ! src/hotspot/share/ci/ciEnv.cpp ! src/hotspot/share/compiler/compileBroker.cpp ! src/hotspot/share/oops/method.cpp ! src/hotspot/share/oops/method.hpp ! src/hotspot/share/oops/trainingData.hpp