RFR: 8354674: AArch64: Intrinsify Unsafe::setMemory [v2]
Andrew Haley
aph at openjdk.org
Mon May 12 09:42:51 UTC 2025
On Mon, 12 May 2025 06:52:12 GMT, Per Minborg <pminborg at openjdk.org> wrote:
> Looking at the improvements made, I suggest we also change (in `SegmentBulkOperations`):
>
> ```
> private static final int NATIVE_THRESHOLD_FILL = powerOfPropertyOr("fill", Architecture.isAARCH64() ? 18 : 5);
> ```
>
> to
>
> ```
> private static final int NATIVE_THRESHOLD_FILL = powerOfPropertyOr("fill", 5);
> ```
Possibly so, yes, but I'm still looking at the reasons for the differences.
-------------
PR Comment: https://git.openjdk.org/jdk/pull/25147#issuecomment-2871790462
More information about the hotspot-compiler-dev
mailing list