Developer knowledge network · moderated exchange

UnreliableCode 커뮤니티

개발자 연구, 리버스 엔지니어링 및 코딩 커뮤니티

Knowledge index살다
4Categories
919Threads
2.8K게시물
Guide

Understanding Memory Barriers and Store Buffers in Modern x86 and ARM CPUs [StackOverflow Architecture Guide]

assembly_micro_dev
x86_64 Micro-arch
MEMBER
대표: 186
가입 날짜: Oct 2021
게시물: 10
감사해요: 27
1개월 전 · Jul 19, 2026 3:47 AM
#1

Why modern out-of-order CPUs reorder memory operations at the hardware pipeline level:

CPUs use Store Buffers to delay writing data to L1 cache, allowing execution to proceed without waiting for cache line write confirmation. This can cause Store-Load reordering where a CPU reads a stale value before its prior write reaches other cores.

On x86, MFENCE or LOCK prefixed instructions flush the store buffer. On ARM, DMB ISH (Data Memory Barrier Inner Shareable) synchronizes load and store queues across all CPU clusters.

memory_model_mook
Low-Level C Veteran
MEMBER
대표: 163
가입 날짜: Jan 2019
게시물: 11
감사해요: 33
1개월 전 · Jul 19, 2026 9:23 AM
#2

Hardware store buffers are the physical reason why multi-threaded memory models require atomic memory barriers.

profiler_pat
Performance Hunter
MEMBER
대표: 146
가입 날짜: Aug 2019
게시물: 33
감사해요: 31
1개월 전 · Jul 20, 2026 12:27 AM
#3

Great low-level hardware breakdown.