Search code examples
x86 relaxed ordering performance?...

c++c++11x86memory-modelstdatomic

Read More
Using these atomic operations with memory order relaxed and rel/acq as shown, does this C++ snippet ...

c++c++11atomicmemory-modelcompare-and-swap

Read More
Could the JIT collapse two volatile reads as one in certain expressions?...

javavolatilejitmemory-modeljava-memory-model

Read More
Are there any implicit memory barriers in C++...

c++c++11atomicmemory-model

Read More
Will a calling thread see modifications to local variables after thread.join()?...

c++c++11concurrencythread-safetymemory-model

Read More
Understanding release sequence and synchronize with in C11...

cmultithreadingconcurrencyc11memory-model

Read More
Can two sequential assignment statements in C be executed on hardware out of order?...

cinterruptmemory-modelsignal-handling

Read More
C++ value representation of non-trivially-copyable types...

c++language-lawyermemory-model

Read More
Do async and await produce acquire and release semantics?...

c#.netasync-awaitlanguage-lawyermemory-model

Read More
Is mov + mfence safe on NUMA?...

c++x86memory-modelnumastdatomic

Read More
How do data caches route the object in this example?...

cachingcpu-architecturecpu-cachedmamemory-model

Read More
Will fetch_add with relaxed memory order return unique values?...

c++concurrencyatomicmemory-modelrelaxed-atomics

Read More
Formal Linux Kernel Memory Model...

linux-kernelx86memory-model

Read More
Atomic load and store with memory order relaxed...

c++c++11concurrencymemory-modelmemory-barriers

Read More
What are some use cases for memory_order_relaxed...

c++memory-model

Read More
Memory Models and Concurrency...

c++cmemoryconcurrencymemory-model

Read More
Java Specification: reads see writes that occur later in the execution order...

javajvmmemory-modellanguage-specifications

Read More
String constants vs char arrays in C...

carraysstringcharmemory-model

Read More
What's "sequentially consistent executions are free of data races"?...

javamemory-model

Read More
Does the MOV x86 instruction implement a C++11 memory_order_release atomic store?...

c++c++11x86memory-modelstdatomic

Read More
Can loads slip beneath an acquire operation / can stores float above a release in C++?...

c++concurrencyatomicmemory-barriersmemory-model

Read More
confused about atomic class: memory_order_relaxed...

c++multithreadingthread-safetyatomicmemory-model

Read More
C++11 memory model and accessing different members of the same struct in different threads...

c++multithreadingc++11thread-safetymemory-model

Read More
C++11 reading a bool concurrently...

multithreadingc++11memory-model

Read More
Will two relaxed writes to the same location in different threads always be seen in the same order b...

c++c++11concurrencymemory-modelstdatomic

Read More
Will relaxed memory order lead to infinite loop here?...

c++c++11concurrencyatomicmemory-model

Read More
x86: Are memory barriers needed here?...

x86memory-model

Read More
C++ simple mutex using atomic_flag (code not working)...

c++11concurrencyatomicmemory-model

Read More
Does future::wait() synchronize-with completion of the thread of execution by async()?...

c++c++11synchronizationatomicmemory-model

Read More
Memory Model: Activation records...

c++memory-model

Read More
BackNext