RFR: Store AOT code in cached code region of AOT cache [v6]
Ashutosh Mehra
asmehra at openjdk.org
Thu Feb 13 02:21:00 UTC 2025
> 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 <asmehra at redhat.com>
- Minor update
Signed-off-by: Ashutosh Mehra <asmehra at redhat.com>
-------------
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
More information about the leyden-dev
mailing list