12
votes
7answers
1k views
What is the C++ memory model?
What is the C++ memory model as defined by current standard?
What about upcoming C++0x standard? Will it change the memory model to support concurrency better?
7
votes
4answers
584 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 equivalen …
4
votes
5answers
196 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.C …
3
votes
1answer
48 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:
[MethodI …
3
votes
4answers
137 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 …
2
votes
2answers
58 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 o …
2
votes
3answers
707 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 (instructio …
1
vote
5answers
112 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;
v …
1
vote
5answers
115 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() // inv …
1
vote
5answers
107 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.MemoryBarrie …
