mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +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
12 lines
194 B
Makefile
12 lines
194 B
Makefile
SPECS += arm
|
|
|
|
# add repository relative include paths
|
|
REP_INC_DIR += include/arm_v5
|
|
|
|
#
|
|
# Configure target CPU
|
|
#
|
|
CC_MARCH += -march=armv5
|
|
|
|
include $(call select_from_repositories,mk/spec-arm.mk)
|