Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
4k views

What is a memory fence?

What is meant by using an explicit memory fence?
8
votes
2answers
425 views

Fences in C++0x, guarantees just on atomics or memory in general

The C++0x draft has a notion of fences which seems very distinct from a CPU/chip level notion of fences, or say what the linux kernel guys expect of fences. The question is whether the draft really ...
7
votes
5answers
274 views

Are volatile reads and writes atomic on Windows+VisualC?

There are a couple of questions on this site asking whether using a volatile variable for atomic / multithreaded access is possible: See here, here, or here for example. Now, the C(++) standard ...
7
votes
4answers
401 views

Memory ordering issues

I'm experimenting with C++0x support and there is a problem, that I guess shouldn't be there. Either I don't understand the subject or gcc has a bug. I have the following code, initially x and y are ...
6
votes
1answer
228 views

C++0X memory_order without fences, applications, chips that support

As a followup from my previous question, the atomic<T> class specifies most operations with a memory_order parameter. In contrast to a fence this memory order affects only the atomic on which it ...
6
votes
3answers
682 views

.NET memory model, volatile variables, and test-and-set: what is guaranteed?

I know that the .NET memory model (on the .NET Framework; not compact/micro/silverlight/mono/xna/what-have-you) guaranteed that for certain types (most notably primitive integers and references) ...
4
votes
1answer
633 views

Intel 64 and IA-32 | Atomic operations including acquire / release semantic

According to the Intel 64 and IA-32 Architectures Software Developer's Manual the LOCK Signal Prefix "ensures that the processor has exclusive use of any shared memory while the signal is asserted". ...
4
votes
1answer
323 views

Memory Fences - Need help to understand

I'm reading Memory Barriers by Paul E. McKenney http://www.rdrop.com/users/paulmck/scalability/paper/whymb.2010.07.23a.pdf everything is explained in great details and when I see that everything is ...
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
1answer
122 views

__faststorefence

In regards to this question, I'm interested only in x86 and x86-64. For MSVC 2005, the documentation for __faststorefence says: "Guarantees that every preceding store is globally visible before any ...
3
votes
1answer
385 views

acquire-release pair out of order execution

I'm thinking of whether or not it is possible for atomic variable to load the old value in acquire-release pair. Let's suppose we have atomic variable x, and we store that variable with release ...
2
votes
4answers
70 views

Do we need mfence when using xchg

I have a set and test xchg based assembly lock. my question is : Do we need to use memory fencing (mfence, sfence or lfence ) when using xchg instruction ? Edit : 64 Bit platform : with Intel ...
2
votes
3answers
108 views

Atomic access to shared memory

I have a shared memory between multiple processes that interpets the memory in a certain way. Ex: DataBlock { int counter; double value1; double ... } What I want is for the counter to be ...
2
votes
1answer
225 views

C++0x concurrent synchronizes, is the fence needed

I've recently asked a few questions about atomics and C++0x, and I'd like to ensure I understand the ordering semantics before I convert any code. Let's say we have this pre-0x code: atomic_int a = ...
2
votes
2answers
868 views

volatile variable and atomic operations on Visual C++ x86

Plain load has acquire semantics on x86, plain store has release semantics, however compiler still can reorder instructions. While fences and locked instructions (locked xchg, locked cmpxchg) prevent ...
1
vote
2answers
181 views

Out of Order Execution and Memory Fences

I know that modern CPUs can execute out of order, However they always retire the results in-order, as described by wikipedia. "Out of Oder processors fill these "slots" in time with other ...
1
vote
3answers
218 views

sequentially-consistent atomic load on x86

I'm interested in sequentially-consistent load operation on x86. As far as I see from assembler listing, generated by compiler it is implemented as a plain load on x86, however plain loads as far as I ...
1
vote
5answers
345 views

Atomic Instructions and Variable Update visibility

On most common platforms (the most important being x86; I understand that some platforms have extremely difficult memory models that provide almost no guarantees useful for multithreading, but I don't ...
0
votes
1answer
134 views

What is a mem_fence() used for in OpenCL?

Unlike barrier() (which I think I understand), mem_fence() does not affect all items in the work group. The OpenCL spec says (section 6.11.10), for mem_fence(): Orders loads and stores of a ...