@@ -3412,9 +3412,8 @@ public final long getAndBitwiseXorLongAcquire(Object o, long offset, long mask)
3412
3412
* Corresponds to C11 atomic_thread_fence(memory_order_acquire)
3413
3413
* (an "acquire fence").
3414
3414
*
3415
- * A pure LoadLoad fence is not provided, since the addition of LoadStore
3416
- * is almost always desired, and most current hardware instructions that
3417
- * provide a LoadLoad barrier also provide a LoadStore barrier for free.
3415
+ * Provides a LoadLoad barrier followed by a LoadStore barrier.
3416
+ *
3418
3417
* @since 1.8
3419
3418
*/
3420
3419
@ HotSpotIntrinsicCandidate
@@ -3427,9 +3426,9 @@ public final long getAndBitwiseXorLongAcquire(Object o, long offset, long mask)
3427
3426
* Corresponds to C11 atomic_thread_fence(memory_order_release)
3428
3427
* (a "release fence").
3429
3428
*
3430
- * A pure StoreStore fence is not provided, since the addition of LoadStore
3431
- * is almost always desired, and most current hardware instructions that
3432
- * provide a StoreStore barrier also provide a LoadStore barrier for free.
3429
+ * Provides a StoreStore barrier followed by a LoadStore barrier.
3430
+ *
3431
+ *
3433
3432
* @since 1.8
3434
3433
*/
3435
3434
@ HotSpotIntrinsicCandidate
@@ -3450,6 +3449,11 @@ public final long getAndBitwiseXorLongAcquire(Object o, long offset, long mask)
3450
3449
/**
3451
3450
* Ensures that loads before the fence will not be reordered with
3452
3451
* loads after the fence.
3452
+ *
3453
+ * @implNote
3454
+ * This method is operationally equivalent to {@link #loadFence()}.
3455
+ *
3456
+ * @since 9
3453
3457
*/
3454
3458
public final void loadLoadFence () {
3455
3459
loadFence ();
@@ -3458,6 +3462,11 @@ public final void loadLoadFence() {
3458
3462
/**
3459
3463
* Ensures that stores before the fence will not be reordered with
3460
3464
* stores after the fence.
3465
+ *
3466
+ * @implNote
3467
+ * This method is operationally equivalent to {@link #storeFence()}.
3468
+ *
3469
+ * @since 9
3461
3470
*/
3462
3471
public final void storeStoreFence () {
3463
3472
storeFence ();
0 commit comments