genode/repos/base/include/x86/cpu/atomic.h
Martin Stein ec6c19a487 base: memory barriers in lock implementations
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
2014-11-28 12:02:34 +01:00

56 lines
1.3 KiB
C++

/*
* \brief Atomic operations for x86
* \author Norman Feske
* \date 2006-07-26
*
* Based on l4util/include/ARCH-x86/atomic_arch.h.
*/
/*
* Copyright (C) 2006-2013 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__ATOMIC_H_
#define _INCLUDE__X86__CPU__ATOMIC_H_
namespace Genode {
/**
* Atomic compare and exchange
*
* This function compares the value at dest with cmp_val.
* If both values are equal, dest is set to new_val. If
* both values are different, the value at dest remains
* unchanged.
*
* Note, that cmpxchg() represents a memory barrier.
*
* \return 1 if the value was successfully changed to new_val,
* 0 if cmp_val and the value at dest differ.
*/
inline int cmpxchg(volatile int *dest, int cmp_val, int new_val)
{
int tmp;
__asm__ __volatile__
(
"lock cmpxchgl %1, %3 \n\t"
:
"=a" (tmp) /* 0 EAX, return val */
:
"r" (new_val), /* 1 reg, new value */
"0" (cmp_val), /* 2 EAX, compare value */
"m" (*dest) /* 3 mem, destination operand */
:
"memory", "cc"
);
return tmp == cmp_val;
}
}
#endif /* _INCLUDE__X86__CPU__ATOMIC_H_ */