Integrated: 8264806: Remove the experimental JIT compiler

2021-04-26 Thread Vladimir Kozlov
On Fri, 9 Apr 2021 17:35:11 GMT, Vladimir Kozlov wrote: > As part of [JEP 410](http://openjdk.java.net/jeps/410) remove code related to > Java-based JIT compiler (Graal) from JDK: > > - `jdk.internal.vm.compiler` — the Graal compiler > - `jdk.internal.vm.compiler.management` — Graal's `MBean`

Re: RFR: 8264806: Remove the experimental JIT compiler [v5]

2021-04-26 Thread Vladimir Kozlov
> As part of [JEP 410](http://openjdk.java.net/jeps/410) remove code related to > Java-based JIT compiler (Graal) from JDK: > > - `jdk.internal.vm.compiler` — the Graal compiler > - `jdk.internal.vm.compiler.management` — Graal's `MBean` > - `test/hotspot/jtreg/compiler/graalunit` — Graal's unit

Re: RFR: 8264806: Remove the experimental JIT compiler [v4]

2021-04-26 Thread Vladimir Kozlov
> As part of [JEP 410](http://openjdk.java.net/jeps/410) remove code related to > Java-based JIT compiler (Graal) from JDK: > > - `jdk.internal.vm.compiler` — the Graal compiler > - `jdk.internal.vm.compiler.management` — Graal's `MBean` > - `test/hotspot/jtreg/compiler/graalunit` — Graal's unit

Integrated: 8264805: Remove the experimental Ahead-of-Time Compiler

2021-04-26 Thread Vladimir Kozlov
On Thu, 8 Apr 2021 15:23:52 GMT, Vladimir Kozlov wrote: > As part of [JEP 410](http://openjdk.java.net/jeps/410) remove code related to > Ahead-of-Time Compiler from JDK: > > - `jdk.aot` module — the `jaotc` tool > - `src/hotspot/share/aot` — loads AoT compiled code into VM for execution > -

Re: RFR: 8264805: Remove the experimental Ahead-of-Time Compiler [v6]

2021-04-26 Thread Vladimir Kozlov
> As part of [JEP 410](http://openjdk.java.net/jeps/410) remove code related to > Ahead-of-Time Compiler from JDK: > > - `jdk.aot` module — the `jaotc` tool > - `src/hotspot/share/aot` — loads AoT compiled code into VM for execution > - related HotSpot code guarded by `#if INCLUDE_AOT` > > A

RFR: 8254846 Warn before building if Xcode has no disk space left

2021-04-26 Thread George Adams
This PR creates a simple sanity check for all systems to verify that there is at least 6 GB available disk space before compiling. I got the 6 GB requirement from https://github.com/openjdk/jdk/blob/master/doc/building.md#building-on-x86 - Commit messages: - ensure that system has

Integrated: 8264188: Improve handling of assembly files in the JDK

2021-04-26 Thread Magnus Ihse Bursie
On Thu, 25 Mar 2021 16:25:32 GMT, Magnus Ihse Bursie wrote: > We have a handful of assembly files in the JDK. They have long been left > aside, with a "if it ain't broken, don't fix it" attitude. > > In the current panama-vector, there is a lot more assembly files incoming, > including for th

Re: RFR: 8264188: Improve handling of assembly files in the JDK [v3]

2021-04-26 Thread Magnus Ihse Bursie
> We have a handful of assembly files in the JDK. They have long been left > aside, with a "if it ain't broken, don't fix it" attitude. > > In the current panama-vector, there is a lot more assembly files incoming, > including for the Windows platforrm, which has not existed for a long time in

Integrated: 8265702: ZGC on macOS/aarch64

2021-04-26 Thread Per Liden
On Wed, 21 Apr 2021 21:10:02 GMT, Per Liden wrote: > This patch enables ZGC on macOS/aarch64. It does three things: > 1) Enables building of ZGC on this platform. > 2) Adds `os::processor_id()`, which for now always returns 0. > 3) Fixes a WX issue in `OptoRuntime::handle_exception_C()`, where th

Re: RFR: 8265702: ZGC on macOS/aarch64 [v2]

2021-04-26 Thread Per Liden
On Wed, 21 Apr 2021 23:04:43 GMT, Erik Joelsson wrote: >> Per Liden has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Add comment to #else > > Build change looks good. Thanks @erikj79, @dholmes-ora, @stefank and @gerard-ziemski for review