Skip to content

Commit de49337

Browse files
author
Ian Graves
committedSep 1, 2020
8252529: Unsafe Documentation around Barrier Methods Inaccurate
Reviewed-by: psandoz
1 parent b3e2641 commit de49337

File tree

1 file changed

+15
-6
lines changed
  • src/java.base/share/classes/jdk/internal/misc

1 file changed

+15
-6
lines changed
 

‎src/java.base/share/classes/jdk/internal/misc/Unsafe.java

+15-6
Original file line numberDiff line numberDiff line change
@@ -3412,9 +3412,8 @@ public final long getAndBitwiseXorLongAcquire(Object o, long offset, long mask)
34123412
* Corresponds to C11 atomic_thread_fence(memory_order_acquire)
34133413
* (an "acquire fence").
34143414
*
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+
*
34183417
* @since 1.8
34193418
*/
34203419
@HotSpotIntrinsicCandidate
@@ -3427,9 +3426,9 @@ public final long getAndBitwiseXorLongAcquire(Object o, long offset, long mask)
34273426
* Corresponds to C11 atomic_thread_fence(memory_order_release)
34283427
* (a "release fence").
34293428
*
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+
*
34333432
* @since 1.8
34343433
*/
34353434
@HotSpotIntrinsicCandidate
@@ -3450,6 +3449,11 @@ public final long getAndBitwiseXorLongAcquire(Object o, long offset, long mask)
34503449
/**
34513450
* Ensures that loads before the fence will not be reordered with
34523451
* loads after the fence.
3452+
*
3453+
* @implNote
3454+
* This method is operationally equivalent to {@link #loadFence()}.
3455+
*
3456+
* @since 9
34533457
*/
34543458
public final void loadLoadFence() {
34553459
loadFence();
@@ -3458,6 +3462,11 @@ public final void loadLoadFence() {
34583462
/**
34593463
* Ensures that stores before the fence will not be reordered with
34603464
* stores after the fence.
3465+
*
3466+
* @implNote
3467+
* This method is operationally equivalent to {@link #storeFence()}.
3468+
*
3469+
* @since 9
34613470
*/
34623471
public final void storeStoreFence() {
34633472
storeFence();

0 commit comments

Comments
 (0)
Please sign in to comment.