Tagged Questions
The memory-model tag has no wiki summary.
259
votes
5answers
16k views
C++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?
C++11 introduced a standardized memory model, but what exactly does that mean? And how is it going to affect C++ programming?
Herb Sutter says here that,
The memory model means that C++ code
...
25
votes
2answers
350 views
What are the similarities between the Java memory model and the C++11 memory model? [closed]
The new c++ standard introduces the notion of a memory model. There were already questions on SO about it, what does it mean, how does it change the way we write code in c++ and so on.
I'm interested ...
20
votes
3answers
234 views
Is it possible to observe a partially-constructed object from another thread?
I've often heard that in the .NET 2.0 memory model, writes always use release fences. Is this true? Does this mean that even without explicit memory-barriers or locks, it is impossible to observe a ...
18
votes
7answers
4k views
What is the C++ memory model for concurrency?
What is the C++ memory model for concurrency as defined by current standard?
What about upcoming C++0x standard? Will it change the memory model to support concurrency better?
17
votes
2answers
319 views
What does `std::kill_dependency` do, and why would I want to use it?
I've been reading about the new C++11 memory model and I've come upon the std::kill_dependency function (§29.3/14-15). I'm struggling to understand why I would ever want to use it.
I found an ...
15
votes
2answers
2k views
C++0x memory model and speculative loads/stores
So I was reading about the memory model that is part of the upcoming C++0x standard. However, I'm a bit confused about some of the restrictions for what the compiler is allowed to do, specifically ...
13
votes
2answers
633 views
Where can I find good, solid documentation for the C++0x synchronization primitives?
I've seen articles on ::std::thread and ::std::forward and such, but I have seen no good articles on ::std::atomic. There is, of course, the standards proposal paper, but I haven't seen any good ...
12
votes
1answer
396 views
Is writing a reference atomic on 64bit VMs
The java memory model mandates that writing a int is atomic: That is, if you write a value to it (consisting of 4 bytes) in one thread and read it in another, you will get all bytes or none, but never ...
12
votes
1answer
648 views
Thread.VolatileRead Implementation
I'm looking at the implementation of the VolatileRead/VolatileWrite methods (using Reflector), and i'm puzzled by something.
This is the implementation for VolatileRead:
...
11
votes
5answers
2k views
Peterson algorithm in Java?
Is there example implementation of Peterson algorithm for mutual exclusion in Java?
10
votes
3answers
705 views
Is Dalvik's memory model the same as Java's?
Is Dalvik's memory model the same as Java's? I am particularly interested in whether reads and writes of reference and non-long/non-double primitive variables are atomic, but I would also like to know ...
9
votes
4answers
418 views
Does the Java Memory Model (JSR-133) imply that entering a monitor flushes the CPU data cache(s)?
There is something that bugs me with the Java memory model (if i even understand everything correctly). If there are two threads A and B, there are no guarantees that B will ever see a value written ...
8
votes
1answer
307 views
What does [[carries_dependency]] attribute mean?
Can someone explain it in a language that mere mortals understand?
7
votes
6answers
397 views
In C/C++, are volatile variables guaranteed to have eventually consistent semantics betwen threads?
Is there any guarantee by any commonly followed standard (ISO C or C++, or
any of the POSIX/SUS specifications) that a variable (perhaps
marked volatile), not guarded by a mutex, that is being ...
7
votes
4answers
1k views
Does Delphi have any equivalent to C's volatile variable?
In C and C++ a variable can be marked as volatile, which means the compiler will not optimize it because it may be modified external to the declaring object. Is there an equivalent in Delphi ...
6
votes
3answers
89 views
Java memory model : compiler rearranging code lines
It is well known that Java Language allows compliers to re-arrange lines of compiled code as long as the re-order makes no difference to the code semantics. However , the compiler is required to only ...
6
votes
2answers
182 views
volatile with release/acquire semantics
Since Java 5, the volatile keyword has release/acquire semantics to make side-effects visible to other threads (including assignments to non-volatile variables!). Take these two variables, for ...
6
votes
5answers
2k views
Does Interlocked.CompareExchange use a memory barrier?
I'm reading Joe Duffy's post about Volatile reads and writes, and timeliness, and i'm trying to understand something about the last code sample in the post:
while (Interlocked.CompareExchange(ref ...
5
votes
3answers
2k views
Differences between x86/x64/ia64 memory models on .NET
I'm looking for a reference on the differences between the memory models used by the .NET CLR/JIT on x86/x64/ia64. I know there's some differences between x86 and ia64 (instruction reordering, ...
4
votes
2answers
87 views
Java Memory model : visibility for volatile fields
Does making a class field volatile prevent all memory visibility issues with it in a concurrent situation ? Is it possible that for below class , a thread that gets a reference of a Test object sees x ...
4
votes
3answers
122 views
Concurrency and memory models
I'm watching this video by Herb Sutter on GPGPU and the new C++ AMP library. He is talking about memory models and mentions Weak Memory Models and then Strong Memory Models and I think he's referring ...
4
votes
2answers
92 views
visibility of side effects when creating and joining threads
When are writes that are performed by one thread visible to a different thread when there are no synchronized blocks and no volatile variables? Here is a simplified quicksort example:
int middle = ...
4
votes
2answers
197 views
Understanding Memory Models
I've been reading up on memory models recently and I was sort of confused on how this worked.
To quote http://cis.poly.edu/muller/CS623/weakmemory.htm
if processor writes a new X then writes a ...
4
votes
4answers
301 views
When do writes/reads affect main memory?
When I write a value into a field, what guarantees do I get regarding when the new value will be saved in the main memory? For example, how do I know that the processor don't keep the new value in ...
3
votes
2answers
115 views
Does a lock around a write guarantee fresh read in another thread? (.Net, memory model)
Say I have a property whose setter is protected by a lock, but without any lock around the getter, e.g.
private long _myField;
public long MyProperty
{
get { return _myField; }
set { ...
3
votes
3answers
456 views
Bound view model property updated in background thread; will the UI always see the updated value?
If I have some (non-volatile) data bound to the UI via a view model, and I update this data from a background thread without locking anything, and trigger a PropertyChanged event, am I guaranteed that ...
3
votes
5answers
224 views
Double-Check Idiom using booleans
Take the following java code:
public class SomeClass {
private boolean initialized = false;
private final List<String> someList;
public SomeClass() {
someList = new ...
3
votes
2answers
134 views
During a data race can a thread ever read initial null value of volatile variable? especially when a non null value is assigned to it in constructor?
What puzzles me is this.
Java doc of HashEntry in ConcurrentHashMap (jdk1.6.0_16)
...Because the value field is volatile, not final, it is legal wrt the Java Memory Model for an unsynchronized ...
3
votes
1answer
336 views
C++0x: memory ordering
The current C++0x draft states on section 29.3.9 and 29.3.10, pages 1111-1112 that in the following example:
// Thread 1
r1 = y.load(memory_order_relaxed);
x.store(1, memory_order_relaxed);
// ...
3
votes
1answer
301 views
.NET multithreading, volatile and memory model
Assume that we have the following code:
class Program
{
static volatile bool flag1;
static volatile bool flag2;
static volatile int val;
static void Main(string[] args)
{
...
2
votes
1answer
99 views
C++ static variable inialization and threads
I have the following bit of C++11 code that uses threads and static variable initialisations. My question is:
What guarantees or assurances does the C++ language make about the single initialisation ...
2
votes
2answers
71 views
Are all side-effects of executor tasks visible after invokeAll?
If I submit some tasks to an Executor using invokeAll, am I guaranteed that the submitted thread sees all the side effects of the task executions, even if I don't call get() on each of the returned ...
2
votes
1answer
76 views
Fence instruction insertion by JVM/JIT
Java memory model gives DRF guarantee(Data race freedom) which means that a data race free program when executed under relaxed memory model of java will give same behaviour as of sequentially ...
2
votes
3answers
288 views
Questions about Cuda 4.0 and unified memory model
Nvidia seems to be touting that Cuda 4.0 allows programmers to use a unified memory model between the CPU and GPU. This is not going to replace the need to manage the memory manually in the GPU and ...
2
votes
1answer
217 views
Is a memory barrier needed (.net x86 or x64) when dereferencing fields?
In code like the following, if Proc1 and Proc2 execute simultaneously on different processors, is it possible for ThingVal2 to get a value other than 5 (e.g. zero)?
Class SimpleThing
Public X As ...
2
votes
2answers
132 views
Java Memory Model and boolean for success
I'm new to the Java threading and have only recently started to read up on the Memory Model. From my understanding the Java Memory Model as it stands allows the compiler to make optimizations.
This ...
2
votes
2answers
370 views
python threading: memory model and visibility
Does python threading expose issues of memory visibility and statement reordering as Java does? Since I can't find any reference to a "Python Memory Model" or anything like that, despite the fact that ...
2
votes
4answers
266 views
How does memory fences affect “freshness” of data?
I have a question about the following code sample (taken from: http://www.albahari.com/threading/part4.aspx#_NonBlockingSynch)
class Foo
{
int _answer;
bool _complete;
void A()
{
...
2
votes
5answers
260 views
Memory barriers and large structs?
Let's say I've got a struct that consist of 100 bytes. What guarantees have I got about the following code?
m_myLargeStruct = someValue; // copying 100 bytes
Thread.MemoryBarrier();
// Executed by ...
2
votes
2answers
97 views
Can a thread observe junk values in an object due to memory incoherency?
After a lot of research I believe I understand the JMM quite well, certainly well enough to know that when an object is shared between two threads you must synchronize all access on the same monitor. ...
1
vote
3answers
40 views
.NET memory model, multiple instances of the same program running simultaneously
How does the .NET CLR handle multiple instances of the same program running simultaneously?
I make the assumption that each instance is independent and occupies it's own unique memory-space and one ...
1
vote
5answers
300 views
Using memory barriers
In the following code sample, does the memory barrier in FuncA is required to ensure that the most up-to-date value is read?
class Foo
{
DateTime m_bar;
void FuncA() // invoked by thread X
...
0
votes
1answer
114 views
Qt4 Creator/QMAKE equivalent to “-mcmodel=medium” GCC compiler settings
I'm using Qt Creator to create a GUI for a fairly memory intensive C++ application on Linux. In order for the application to run properly, the -mcmodel=medium compiler flag must be set during ...
0
votes
3answers
159 views
A question about Java Memory Model
Several days before, I raised a question to ask how using the keyword 'volatile' and I got the answer. Here I'd like to thanks again for the people who helped me.
However, a new question rose in my ...
0
votes
1answer
149 views
Causal Consistency Definition
I'm having a hard time understanding the causal consistency definition. (link to the definition, its a pdf - http://www.mediafire.com/?vn4msdihm7xgepn )
Could anyone explain as simply as possible how ...