mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 08:51:08 +00:00
ec6c19a487
The memory barrier prevents the compiler from changing the program order of memory accesses in such a way that accesses to the guarded resource get outside the guarded stage. As cmpxchg() defines the start of the guarded stage it also represents an effective memory barrier. On x86, the architecture ensures to not reorder writes with older reads, writes to memory with other writes (except in cases that are not relevant for our locks), or read/write instructions with I/O instructions, locked instructions, and serializing instructions. However on ARM, the architectural memory model allows not only that memory accesses take local effect in another order as their program order but also that different observers (components that can access memory like data-busses, TLBs and branch predictors) observe these effects each in another order. Thus, a correct program order isn't sufficient for a correct observation order. An additional architectural preservation of the memory barrier is needed to achieve this. Fixes #692
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
/*
|
|
* \brief Memory barrier
|
|
* \author Martin Stein
|
|
* \date 2014-11-12
|
|
*
|
|
* The memory barrier prevents memory accesses from being reordered in such a
|
|
* way that accesses to the guarded resource get outside the guarded stage. As
|
|
* cmpxchg() defines the start of the guarded stage it also represents an
|
|
* effective memory barrier.
|
|
*
|
|
* On x86, the architecture ensures to not reorder writes with older reads,
|
|
* writes to memory with other writes (except in cases that are not relevant
|
|
* for our locks), or read/write instructions with I/O instructions, locked
|
|
* instructions, and serializing instructions. Thus, a compiler memory-barrier
|
|
* is sufficient.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2014 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__X86__CPU__MEMORY_BARRIER_H_
|
|
#define _INCLUDE__X86__CPU__MEMORY_BARRIER_H_
|
|
|
|
namespace Genode {
|
|
|
|
static inline void memory_barrier()
|
|
{
|
|
asm volatile ("" ::: "memory");
|
|
}
|
|
}
|
|
|
|
#endif /* _INCLUDE__X86__CPU__MEMORY_BARRIER_H_ */
|