Modifications to different memory locations may appears in different order on different threads or different processors. Memory models describe which re-orderings are possible and what measures must be taken to avoid unwanted reordering.
0
votes
1answer
12 views
Do atomics in C++11 prevent compiler to re-read from shared variables?
I'm looking for the second time at Herb's great "atomic weapons" talk and I'm trying to wrap my mind around the concepts that undergo the whole memory model / sequential consistency story.
There's one ...
0
votes
1answer
31 views
What is the scope of memory flushed or published to various threads when using volatile and synchronized?
This question is in reference to memory visibility only, not happens-before and happens-after. There are four ways in Java that guarantees changes to memory in one thread to be made visible to another ...
1
vote
1answer
32 views
What is the (slight) difference on the relaxing atomic rules?
After seeing Herb Sutters excellent talk about "atomic weapons" I got a bit confused about the Relaxed Atomics examples.
I took with me that an atomic in the C++ Memory Model (SC-DRF = Sequentially ...
0
votes
1answer
25 views
CS vs DS values in protected flat model
Do CS & DS segment registers for a given process in protected flat model hold the same value?
In other words, do following code sequences within same program
mov dword ptr [0x7fffffff], ebx
and
...
2
votes
1answer
77 views
How causal consistency is different to sequential consistency?
I understand that in sequential consistency all processes have to be processed sequentially. For example:
Process 1 Process 2
x = 1 z = 5
y = 2 p = 3
So, we can get x=1, z=5, ...
3
votes
1answer
92 views
Memory Model: preventing store-release and load-acquire reordering
It is known that, unlike Java's volatiles, .NET's ones allow reordering of volatile writes with the following volatile reads. When it is a problem MemoryBarier is recommended to be placed between ...
1
vote
1answer
17 views
Questions about Memory models
When I read the book related to compiler , I saw that there are two major memory models.
Register to Register model and Memory to memory model.
In the book, it says that register-to-register models ...
5
votes
2answers
246 views
Do C++ conditional statements carry a dependency from the condition expression to the statement?
I'm asking specifically in the memory-model sense. http://en.cppreference.com/w/cpp/atomic/memory_order
I'm asking because I want to know if I can use a std::memory_order_consume in the below:
...
6
votes
1answer
288 views
C++11. is synchronizing with std::mutex slower than with std::atomic(memory_order_seq_cst)?
the main reason for using atomics over mutexes, is that mutexes are expensive. but with the default memory model for atomics being memory_order_seq_cst, isn't this just as expensive?
question: can ...
7
votes
1answer
264 views
C++11 memory_order_acquire and memory_order_release semantics?
http://en.cppreference.com/w/cpp/atomic/memory_order, and other C++11 online references, define memory_order_acquire and memory_order_release as:
Acquire operation: no reads in the current thread ...
-1
votes
1answer
59 views
how can I reduce mux size
module memory_module (input clk,input[0:6] address,input [0:7]data_input,
input read_write,output [0:7] data_output,input enable,output ready);
reg ready;
reg [0:7] data_output;
reg ...
1
vote
1answer
41 views
x86_64 memory reorder
on x86_64 architecture, whether the following code will always hold:
A=1;B=1;
Thread1 : store A=2; store B=3;
Thread2 : load B==3; load A==2
is there any posibilities that B==3 but A==1 ??
2
votes
1answer
183 views
Release/Acquire semantics wrt std::mutex
I am reading the C++ memory model defined in n3485 and it talks about release/acquire semantics, which from what I understand, and also from the definitions given in this blog:
Acquire semantics ...
9
votes
1answer
218 views
What is a consume operation in the C++11 Standard?
I have seen that this question on acquire, release, consume, etc exists, however, no answer really defines what a "consume operation" actually is.
In 1.10 paragraph 5 it states:
A synchronization ...
2
votes
1answer
59 views
Memory limit for x86 microprocessors
I recently started off with a course on Computer Architecture from an online resource. I read from one of the books I picked up, that x86 processors have 32 address lines and can read in data 4 bytes ...
4
votes
2answers
227 views
Confusion about implementation error within shared_ptr destructor
I have just seen Herb Sutter's talk: C++ and Beyond 2012: Herb Sutter - atomic<> Weapons, 2 of 2
He shows bug in implementation of std::shared_ptr destructor:
if( ...
3
votes
1answer
134 views
Using the memory of an object of an empty class type
Since in C++ sizeof of an empty class is 1 byte, is the following code valid?
class A
{
};
int main()
{
A a;
char* p = reinterpret_cast<char*>(&a);
*p = 'a';
}
I know its ...
0
votes
1answer
85 views
Do non-atomic objects have same modification order in all threads? (in absence of data races)
1.10/6:
All modifications to a particular atomic object M occur in some particular total order, called the modification
order of M.
Do non-atomic objects also have same modification order in ...
0
votes
1answer
77 views
Does exchange or compare_and_exchange reads last value in modification order?
I am reading C++ Concurrency in Action by Anthony Williams.
At section "Understanding Relaxed Ordering" it has:
There are a few additional things you can tell the man in the cubicle, such as ...
2
votes
2answers
253 views
C++ memory_order_consume, kill_dependency, dependency-ordered-before, synchronizes-with
I am reading C++ Concurrency in Action by Anthony Williams. Currently I at point where he desribes memory_order_consume.
After that block there is:
Now that I’ve covered the basics of the memory ...
5
votes
1answer
234 views
Concurrent writes to different locations in the same cache line
Suppose I have a C++11 application where two threads write to different but nearby memory locations, using simple pointers to primitive types. Can I be sure that both these writes will end up in ...
0
votes
1answer
109 views
access data segment from kernel space
I would like to be able to tell which pages in the page table belonging to a process are used as data segment.
I am using Linux kernel v 3.2 for amd64
here is what I did before and did not work:
...
0
votes
3answers
172 views
c# memory model, locking, and syncronization
Does the c# memory model guarantee that a thread holding a lock is guaranteed to see all updates performed while any other thread previously held the same lock?
I have been reading the c# ...
7
votes
1answer
88 views
Is this instruction reordering allowed by the JLS or not?
According to the Java Language Specification (Example 17.4-1) the following snippet (starting in A == B == 0)...
Thread 1 Thread 2
-------- --------
r2 = A; r1 = ...
11
votes
2answers
178 views
Why is memory_order given as a runtime argument to std::atomic functions
std::atomic functions such as store and load take an std::memory_order argument. The argument can be determined at runtime, like any other function argument. However, the actual value may effect the ...
-3
votes
2answers
104 views
Is double check issue fixed in 1.6 or 1.7?
There were a double check issue in 1.4
http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html
Were it fixed in later JDKs?
6
votes
2answers
119 views
Why isn't java.lang.Class.newInstance0() strictly correct under the java memory model?
I came across the following note in java.lang.Class.newInstance0() in JDK 1.7 Update 7:
NOTE: the following code may not be strictly correct under the current Java memory model.
Can anybody ...
1
vote
1answer
66 views
publication safety, relaxed memory models and memcpy
I am trying to follow this article in the section about publication safety. My case is no different than the trivial example in the article, but the "published" data is not a single value, but several ...
1
vote
1answer
70 views
Thread synchronization: How to guarantee visibility of writes
There is already a lot of information on software and hardware memory models, memory fences, store/load reordering etc. However, it all seems to focus on guaranteeing the relative ordering of reads ...
9
votes
1answer
345 views
C11/C++11 Memory Model
I have two questions:
I would like to know if the standards for C++11 and C11 will share the same memory model specs. I read that this is so, that in fact C11 is "inheriting" the C++11 memory model ...
2
votes
1answer
175 views
Value representation of non-trivially copyable types
I'm intrigued by the following paragraph from the standard (§3.9/4 of ISO/IEC 14882:2011(E)):
The object representation of an object of type T is the sequence of N unsigned char objects taken up ...
3
votes
2answers
481 views
What do each memory_order mean?
I read a chapter and I didn't like it much. I'm still unclear what the differences is between each memory order. This is my current speculation which I understood after reading the much more simple ...
2
votes
1answer
186 views
How do memory_order_seq_cst and memory_order_acq_rel differ?
Stores are release operations and loads are acquire operations for both. I know that memory_order_seq_cst is meant to impose an additional total ordering for all operations, but I'm failing to build ...
2
votes
2answers
214 views
Strange results about C++11 memory model (Relaxed ordering)
I was testing the example in the memory model of the Anthony Williams's book "C++ Concurrency"
#include<atomic>
#include<thread>
#include<cassert>
std::atomic_bool x,y;
...
0
votes
1answer
127 views
A reordering which may never happen
In discussion at Does a correctly synchronized program still allow data race?(Part I), we got two very good examples.
I just want to discuss the second one. For convenience, I just put second ...
1
vote
1answer
47 views
Why we cannot apply the guarantee included in JLS?
I got a mail from mailing list which says that if actions on volatile vars contain data race then guarantee("A program is correctly synchronized if and only if all sequentially consistent executions ...
3
votes
2answers
78 views
May a correct program be incorrectly synchronized?
In answer of Does a correctly synchronized program still allow data race?(Part I), it gives us a good example: all executions of a program appear to be sequentially consistent, but it still has data ...
8
votes
1answer
243 views
Example for a correctly synchronized program with data races in Java memory model
In JLS, §17.4.5. Happens-before Order, it says that
A program is correctly synchronized if and only if all sequentially consistent executions are free of data races.
According to discussion in ...
5
votes
3answers
202 views
What's “sequentially consistent executions are free of data races”?
In JLS, §17.4.5. Happens-before Order, it says that
A program is correctly synchronized if and only if all sequentially consistent executions are free of data races.
It only give us definition ...
4
votes
3answers
219 views
Does a correctly synchronized program still allow data race?(Part I)
There are two conclusions from JLS:
C1: If a program is free of data races, then all executions of the program will appear to be sequentially consistent: data-race-free => sequentially consistent
...
3
votes
3answers
365 views
How to understand happens-before consistent
In chapter 17 of JLS, it introduce a concept: happens-before consistent.
A set of actions A is happens-before consistent if for all reads r in A, where W(r) is the write action seen by r, it is ...
0
votes
0answers
56 views
What's the Memory Model's impact on Data section?
Tiny, Small, Medium, Compact, Large, etc.
The only information I can find is how these memory models impact the size of the code section and near or far addressing and such. I'm looking for how/if ...
1
vote
1answer
151 views
How to control a program's default stack settings in BSD or Linux?
Let's say I have a running program, and I look at /proc/[pid]/map in BSD (or /proc/[pid]/maps in linux), I'll see a line like:
0xbfbe0000 0xbfc00000 3 0 0xc74c4198 rwx 1 0 0x3000 COW NNC default - CH ...
24
votes
3answers
2k views
How can C++ compilers support C++11 atomic, but not support C++11 memory model
While looking at Clang and g++ C++11 implementation status I noticed something strange:
they support C++11 atomics, but they dont support C++11 memory model.
I was under impression that you must have ...
2
votes
1answer
144 views
what orderings are guaranteed by the ARM weak memory model
I understand the basic differences b/w a weak and strong memory model.
But there is no exact definition of weak and it depends on the architecture (here ARM).
I have gone through the documentation ...
10
votes
2answers
365 views
Does std::mutex create a fence?
If I lock a std::mutex will I always get a memory fence? I am unsure if it implies or enforces you to get the fence.
Update:
Found this reference following up on RMF's comments.
Multithreaded ...
1
vote
2answers
119 views
What assumptions should code make about CPU memory model, and how should such assumptions be documented?
From what I've read, Intel processor architectures enforce a stronger memory model than .net implementations are required to provide. To what extent is it proper for code to make use of the ...
12
votes
3answers
541 views
java: `volatile` private fields with getters and setters
Should we declare the private fields as volatile if the instanced are used in multiple threads?
In Effective Java, there is an example where the code doesn't work without volatile:
import ...
1
vote
1answer
196 views
Memory ordering restrictions on x86 architecture
In his great book 'C++ Concurrency in Action' Anthony Williams writes the following (page 309):
For example, on x86 and x86-64 architectures, atomic load operations are
always the same, whether ...
0
votes
3answers
232 views
Java concurrent access to field, trick to not use volatile
Preface: I'm know that in most cases using a volatile field won't yield any measurable performance penalty, but this question is more theoretical and targeted towards a design with an extremly high ...

