|
|
|
|
|
by bno1
1115 days ago
|
|
> Note that an acquire load of p would have prohibited this reordering, since acquire loads block all future memory access, even if unrelated to the value being acquired. I don't really get this part. The docs for acquire say: > memory_order_acquire A load operation with this memory order performs the acquire operation on the affected memory location: no reads or writes in the current thread can be reordered before this load. All writes in other threads that release the same atomic variable are visible in the current thread The prefetch is already ordered before the load in the same thread. |
|