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

2
votes
1answer
104 views

Does Intel SFENCE have release semantics?

It seems like the accepted definition of acquire and release semantics is something like this: (Quoted from http://msdn.microsoft.com/en-us/library/windows/hardware/ff540496(v=vs.85).aspx) An ...
3
votes
2answers
141 views

Does mutex_unlock function as a memory fence?

The situation I'll describe is occurring on an iPad 4 (ARMv7s), using posix libs to mutex lock/unlock. I've seen similar things on other ARMv7 devices, though (see below), so I suppose any solution ...
12
votes
4answers
158 views

Java concurrent visibility of primitive array writes

I recently found this gem in my code base: /** This class is used to "publish" changes to a non-volatile variable. * * Access to non-volatile and volatile variables cannot be reordered, * so if ...
3
votes
1answer
105 views

Is this memory barrier implemented correctly?

I'm reading a legacy C++ code where memory barrier is defined as below. The main OS are linux and vxworks. The compilers are gcc(WindRiver's gcc). #if((KCompilerGNU)||(kCompilerWindRiver)) #define ...
1
vote
0answers
30 views

memory barrier example of JMM cookbook confusion

I am confused with this compiler insertion of barrier example in the JMM cookbook http://g.oswego.edu/dl/jmm/cookbook.html i = u (don't it involve a volatile load from u and normal store into i ? ) ...
3
votes
1answer
683 views

Understanding Linux Kernel Circular Buffer

There is an article at: http://lwn.net/Articles/378262/ that describes the Linux kernels circular buffer implementation. I have some questions: Here is the "producer": spin_lock(&producer_lock); ...
4
votes
1answer
162 views

Linux kernel memory barriers

I am new to Linux kernel programming. I am confused by the memory barriers documentation, in the GUARANTEES chapter. Overlapping loads and stores within a particular CPU will appear to be ordered ...
0
votes
1answer
38 views

cache coherency of lock-protected data

Given threads TA and TB contending in f() below: struct C { C(): a(0) {} int a; std::mutex mtx; void f() { ... // use 'a' in readonly mode std::lock_guard<std::mutex> lock(mtx); ...
14
votes
6answers
554 views

Is memory reordering visible to other threads on a uniprocessor?

It's common that modern CPU architectures employ performance optimizations that can result in out-of-order execution. In single threaded applications memory reordering may also occur, but it's ...
2
votes
1answer
206 views

Should I add a memory barrier in FIFO enqueue?

I'm implementing a non-locking FIFO using a linked list. The Enqueue of the FIFO is basically: void Enqueue(CNode node) { m_tail->m_next = node; // Do I need a memory barrier here? m_tail ...
2
votes
0answers
40 views

How do emulators handle translating memory barriers (implicit and explicit)?

Assuming the source and target architectures are different, how do emulators efficiently translate memory barriers? I know that in general modern emulators will employ a JIT to translate from the ...
1
vote
1answer
173 views

Compile time barriers - compiler code reordering - gcc and pthreads

AFAIK there are pthread functions that acts as memory barriers (e.g. here clarifications-on-full-memory-barriers-involved-by-pthread-mutexes). But what about compile-time barrier, i.e. is compiler ...
2
votes
1answer
219 views

What is the light(est) weight GCC memory barrier in such case?

I have the following C code: ... data[index] = something; a_write_memory_barrier(); index = new_index; ... The code is not protected by a lock(others just read data and index), I want to make sure ...
3
votes
2answers
147 views

Memory barriers: How to ensure initialization writes are seen by worker threads?

I'm fairly new to programming with memory barriers/fences, and I was wondering how we can guarantee that setup writes are visible in worker functions subsequently run on other CPUs. For example, ...
3
votes
2answers
181 views

ARM multi-core penalty for Java programs

I wonder if there is a penalty for running Dalvik+JIT on a multi-core ARM chip vs a single core chip? E.g., if I disable multi-core support in my Android system build and execute the entire phone ...
3
votes
2answers
114 views

Do spinlocks really need DMB?

I'm working with a dual Cortex-A9 system and I've been trying to understand exactly why spinlock functions need to use DMB. It seems that as long as the merging store buffer is flushed the lock value ...
1
vote
1answer
64 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 ...
2
votes
1answer
313 views

How do I write a memory barrier for a TMS320F2812 DSP?

I've looked through the TI C/C++ compiler v6.1 user's guide (spru514e) but didn't find anything. The asm statement doesn't seem to provide anything in this regard, the manual even warns against ...
4
votes
3answers
176 views

Are memory-barriers required when joining on a thread?

If a thread A spawns another thread B with the single purpose of writing to a variable V and then waits for it to terminate, are memory-barriers required to ensure that subsequent reads of V on thread ...
15
votes
1answer
504 views

Memory barrier use in lock-free queues

I recently read Paul McKenney's 2010 white paper, "Memory Barriers: a Hardware View for Software Hackers". I would very much appreciate some feedback / comments / guidance with regard to a small ...
5
votes
2answers
2k views

difference in mfence and asm volatile (“” : : : “memory”)

As far as I have understood, mfence is a hardware memory barrier while asm volatile ("" : : : "memory") is a compiler barrier. But,can asm volatile ("" : : : "memory") be used in place of mfence. The ...
18
votes
5answers
1k views

Fastest inline-assembly spinlock

I'm writing a multithreaded application in c++, where performance is critical. I need to use a lot of locking while copying small structures between threads, for this I have chosen to use spinlocks. ...
0
votes
1answer
134 views

Memory fencing at compiler level and hardware level

I read about memory fencing here... And I need a little clarification about it asm volatile ("" : : : "memory") This provides a compiler level memory fence and processor can still do reordering ...
8
votes
2answers
415 views

What are examples of memory barriers in C++?

I see C++11 mutexes lock is not void lock() volatile. How does the compiler know which functions are memory barriers and which are not? Are all functions barriers even if they are not volatile? What ...
2
votes
2answers
463 views

memory barrier and cache flush

Is there any archs where a memory barrier is implemented even with a cache flush? I read that memory barrier affects only CPU reordering but I read statements related to the memory barriers: ensures ...
4
votes
2answers
252 views

System Uptime & MemoryBarrier

I need a robust way of getting system uptime, and ended up using something as follows. Added some comments to help people read it. I cannot use Task's as this has to run on a .NET 3.5 application. ...
1
vote
1answer
104 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 ...
0
votes
0answers
112 views

Openmp barrier inside function

I have a particular function which I want to be able to synchronize inside: void barrier() { #pragma omp barrier } #pragma omp parallel { barrier(); } however, the above does not work (hangs). ...
0
votes
0answers
48 views

Does MemoryBarrier() API works in single core system?

I am writing a multi-threaded windows application. To synchronize the threads, I added full memory barrier for all global variables using the API 'MemoryBarrier()'. As per the specification, ...
2
votes
5answers
257 views

c# concurrency of struct array

Given an array of struct: public struct Instrument { public double NoS; public double Last; } var a1 = new Instrument[100]; And a threading task pool that is writing to those elements on ...
1
vote
1answer
111 views

Does _ReadWriteBarrier Ensure Visibility of Dynamically Allocated Buffers Across Threads?

I am using Visual C++ and Windows 7 and XP. I have two threads in a program where, after both are created, one thread dynamically creates a buffer and assigns its address to a global pointer, then ...
35
votes
5answers
771 views

Is function call an effective memory barrier for modern platforms?

In a codebase I reviewed, I found the following idiom. void notify(struct actor_t act) { write(act.pipe, "M", 1); } // thread A sending data to thread B void send(byte *data) { global.data = ...
4
votes
3answers
245 views

Is there a good introduction to memory barriers?

I'm looking for a good online introduction to memory barriers and the usual pitfalls in Java code: Using synchronized too often or not often enough When to use volatile and final Double checked ...
1
vote
1answer
239 views

Do concurrent interlocked and reads require a memory barrier or locking?

This is a simple problem, but after reading Why do I need a memory barrier? I'm very confused about it. In the example below, assume different threads are repeatedly calling Increment and Counter: ...
1
vote
2answers
71 views

MemoryBarriers and Parallel Extensions

Is there a need to be concerned about MemoryBarriers when using the Parallel Extensions? Edit - to elaborate as the original question was open ended: (@xanatos' answer was the one I was looking for) ...
0
votes
2answers
260 views

Is memory barrier meaningful only in SMP?

I understand why memory barriers are needed, but I don't get it in the case of Uniprocessor. Do I have to deal with barriers even when I use UP? Every document explains them with SMP but not UP. In ...
1
vote
3answers
168 views

Using a flag to communicate between threads

On the Internet, there can be found many debates about the use of volatile keyword in parallel programming, sometimes with contradictory argumentation. One of the more trustworthy discussion of this ...
0
votes
3answers
240 views

Is a memory barrier required if a second thread waits for termination of the first one?

Suppose that thread Alpha is writing to variable A without locking. A second thread Beta is waiting for Alpha to terminate, then reads the variable A in turn. Is it possible that the contents of A ...
8
votes
2answers
1k 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 ...
15
votes
5answers
693 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 .... ...
23
votes
1answer
799 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 ...
3
votes
2answers
202 views

Need clarification about Thread.MemoryBarrier() [duplicate]

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; ...
4
votes
2answers
175 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
215 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 ...
20
votes
2answers
2k 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 ...
3
votes
2answers
1k 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 ...
2
votes
2answers
312 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 ...
1
vote
3answers
356 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 ...
0
votes
2answers
265 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
265 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 -> ...

1 2