-
Type:
Enhancement
-
Resolution: Unresolved
-
Priority:
P4
-
Affects Version/s: 26
-
Component/s: hotspot
-
aarch64
ZBarrierSetAssembler::patch_barrier_relocation has the following code:
OrderAccess::fence();
ICache::invalidate_word((address)patch_addr);
OrderAccess::fence(), which is FULL_MEM_BARRIER, is redundant.
The cache maintenance function internally handles any required barriers.
OrderAccess::fence();
ICache::invalidate_word((address)patch_addr);
OrderAccess::fence(), which is FULL_MEM_BARRIER, is redundant.
The cache maintenance function internally handles any required barriers.
- relates to
-
JDK-8370947 Mitigate Neoverse-N1 erratum 1542419 negative impact on GenZGC performance
-
- Open
-
- links to
-
Review(master)
openjdk/jdk/28244