Can Ahead of Time code benefit regular Java applications too?

Andrew Haley aph at redhat.com
Wed Jun 1 09:32:45 UTC 2022


On 6/1/22 06:07, Julian Waters wrote:
> Likewise, perhaps working in a similar fashion to
> intrinsics, you could have certain sections of regularly compiled Java code
> within jars replaced by native code compiled by C1 (or C2?) if the JVM it
> was compiled by and the target OS/CPU match the current running JVM and
> OS/CPU

The problem there would be that of jaotc: it worked, but because the pre-
compiled code was not patchable, it had to use indirection for all accesses.
So, every field offset, method reference, etc. went through a writable
section. All of these had to be fixed up, and of course it bulked out
the runtime. The whole process, in the end, wasn't much quicker than
C1 compilation.

-- 
Andrew Haley  (he/him)
Java Platform Lead Engineer
Red Hat UK Ltd. <https://www.redhat.com>
https://keybase.io/andrewhaley
EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671



More information about the leyden-dev mailing list