Tagged Questions

A memory barrier is a special processor instruction that imposes restrictions on the order in which memory accesses become visible to other processors/cores in a multi-processor or multi-core system.

learn more… | top users | synonyms

19
votes
1answer
310 views

Memory barriers and the TLB

Memory barriers guarantee that the data cache will be consistent. However, does it guarantee that the TLB will be consistent? I am seeing a problem where the JVM (java 7 update 1) sometimes crashes ...
16
votes
6answers
685 views

Thread Synchronisation 101

Previously I've written some very simple multithreaded code, and I've always been aware that at any time there could be a context switch right in the middle of what I'm doing, so I've always guarded ...
14
votes
5answers
314 views

Is this a correct use of Thread.MemoryBarrier()?

Assume I have a field that controls execution of some loop: private static bool shouldRun = true; And I have a thread running, that has code like: while(shouldRun) { // Do some work .... ...
13
votes
2answers
718 views

Memory model ordering and visibility?

I tried looking for details on this, I even read the standard on mutexes and atomics... but still I couldnt understand the C++11 memory model visibility guarantees. From what I understand the very ...
11
votes
5answers
271 views

Threads synchronization. How exactly lock makes access to memory 'correct'?

First of all, I know that lock{} is synthetic sugar for Monitor class. (oh, syntactic sugar) I was playing with simple multithreading problems and discovered that cannot totally understand how lockng ...
8
votes
6answers
3k views

Memory barriers in userspace? (Linux, x86-64)

It is easy to set memory barriers on the kernel side: the macros mb, wmb, rmb, etc. are always in place thanks to the Linux kernel headers. How to accomplish this on the user side?
7
votes
3answers
948 views

Which is a better write barrier on x86: lock+addl or xchgl?

The Linux kernel uses lock; addl $0,0(%%esp) as write barrier, while the RE2 library uses xchgl (%0),%0 as write barrier. What's the difference and which is better? Does x86 also require read barrier ...
7
votes
5answers
2k views

Why we need Thread.MemoryBarrier()?

In C#4 in a Nutshell, the author show that this class can write 0 sometimes without MemoryBarrier. I can“t reproduce in my Core2Duo: public class Foo { int _answer; bool _complete; public ...
7
votes
4answers
406 views

How do JVM's implicit memory barriers behave when chaining constructors?

Referring to my earlier question on incompletely constructed objects, I have a second question. As Jon Skeet pointed out, there's an implicit memory barrier in the end of a constructor that makes ...
6
votes
2answers
102 views

C++ Memory Barriers for Atomics

I'm a newbie when it comes to this. Could anyone provide a simplified explanation of the differences between the following memory barriers? The windows MemoryBarrier(); The fence _mm_mfence(); The ...
6
votes
3answers
479 views

volatile variables and memory barrier in java

I've got a data structure which consists of linked nodes. You can think of it as of a simple LinkedList. Each node of the list consists of some value and a next field pointing the other node or null ...
6
votes
3answers
2k views

How do I Understand Read Memory Barriers and Volatile

Some languages provide a volatile modifier that is described as performing a "read memory barrier" prior to reading the memory that backs a variable. A read memory barrier is commonly described as a ...
5
votes
2answers
244 views

Do spin locks always require a memory barrier? Is spinning on a memory barrier expensive?

I wrote some lock-free code that works fine with local reads, under most conditions. Does local spinning on a memory read necessarily imply I have to ALWAYS insert a memory barrier before the ...
5
votes
3answers
326 views

Memory barrier generators

Reading Joseph Albahari's threading tutorial, the following are mentioned as generators of memory barriers: C#'s lock statement (Monitor.Enter/Monitor.Exit) All methods on the Interlocked class ...
4
votes
2answers
93 views

Lazy loading and the use of Thread.MemoryBarrier

When designing a class that has a reference to another object it might be beneficial to only create the referenced object the first time it is used, e.g. use lazy loading. I often use this pattern to ...
4
votes
2answers
126 views

Can one have conditional code at runtime based on the CPU architecture?

I'm using .Net 4.5 (preview... 4 is fine for the purposes of this question). I'm doing threading work. Based on my studies, I know that x86 CPUs have a strong memory model, which means writes won't ...
3
votes
2answers
111 views

Need clarification about Thread.MemoryBarrier() [closed]

Possible Duplicate: Why we need Thread.MemoryBarrier()? From O'Reilly's C# in a Nutshell: class Foo { int _answer; bool _complete; void A() { _answer = 123; ...
3
votes
1answer
154 views

Thread safe usage of lock helpers (concerning memory barriers)

By lock helpers I am referring to disposable objects with which locking can be implemented via using statements. For example, consider a typical usage of the SyncLock class from Jon Skeet's MiscUtil: ...
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
190 views

Non-Blocking Synchronization (MemoryBarrier)

I modified the program given on Non-Blocking Synchronization as following: class DemoProg { int _answer; bool _complete; public void StartDemo() { Thread t1 = new Thread(A); ...
3
votes
3answers
184 views

order and barrier:what is the equivalent instruction on x86 for 'lwsync' on PowerPC?

My code is simple as below.I found rmb and wmb for read and write,but found no general one.lwsync is available on PowerPC,but what is the replacement for x86?Thanks in advance. #define barrier() ...
3
votes
3answers
715 views

Memory barriers vs. interlocked operations

I am trying to improve my understanding of memory barriers. Suppose we have a weak memory model and we adapt Dekker's algorithm. Is it possible to make it work correctly under the weak memory model by ...
3
votes
6answers
304 views

Compiler reordering around mutex boundaries?

Suppose I have my own non-inline functions LockMutex and UnlockMutex, which are using some proper mutex - such as boost - inside. How will the compiler know not to reorder other operations with regard ...
3
votes
2answers
438 views

Are memory barriers necessary for atomic reference counting shared immutable data?

I have some immutable data structures that I would like to manage using reference counts, sharing them across threads on an SMP system. Here's what the release code looks like: void ...
2
votes
2answers
98 views

Trying to understand the relation between Thread.MemoryBarrier() and context switching

Since it appears that context switch may happen at any point in execution of instructions I am now wondering why code "in part in question" (those 2 instructions) makes sense, if context switch can ...
2
votes
1answer
223 views

Compiler and CPU reordering

I have this following situation. volatile double val1 = 10.0; volatile double val2 = 20.0; double SetValues(double d1, double d2) { double ret = d1-d2; InterlockedExchange64( (volatile long ...
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
1answer
163 views

synchronizes-with, happens-before relation and acquire-release semantics

I need help in understanding synchronizes-with relation. The more I'm reading it an trying to understand example, the more I feel that I understand nothing. Sometimes I feel that here is it, I've got ...
2
votes
3answers
954 views

memory fences/barriers in C++: does boost or other libraries have them?

I am reading these days about memory fences and barriers as a way to synchronize multithreaded code and avoid code reordering. I usually develop in C++ under Linux OS and I use boost libs massively ...
2
votes
1answer
263 views

How does _ReadWriteBarrier propagate up the call tree?

I'm looking at this bit of text in the documentation for Visual C++'s _ReadWriteBarrier intrinsic: In past versions of the Visual C++ compiler, the _ReadWriteBarrier and _WriteBarrier ...
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 ...
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
75 views

Context-switch and thread execution on different CPU cores

From my another question on SO I found out that its possible that following simple method void B() { if (_complete) { Console.WriteLine (_answer); } } may be executed on ...
1
vote
1answer
142 views

Java LockSupport Memory Consistency

Java 6 API question. Does calling LockSupport.unpark(thread) have a happens-before relationship to the return from LockSupport.park in the just-unparked thread? I strongly suspect the answer is yes, ...
0
votes
1answer
112 views

Implementation of a Barrier(a synchronization construct) using binary semaphore

Barrier is a synchronization construct where a set of processes synchronizes globally i.e. each process in the set arrives at the barrier and waits for all others to arrive and then all processes ...
0
votes
2answers
67 views

Does a pthread_cond_signal or pthread_cond_broadcast call imply a write memory barrier?

Condition variables are generally used such that the state they refer to is modified under a mutex. However, when the state is just a single set-only flag, there's no need for a mutex to prevent ...
0
votes
1answer
48 views

Memory Barriers and Relaxed Memory Models

Currently I try to improve my understanding of memory barriers, locks and memory model. As far as I know there exist four different types of relaxations, namley Write -> Read, Write -> Write, Read -> ...