This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH][RFC] Fix SPARC atomic_write_barrier.


From: Torvald Riegel <triegel@redhat.com>
Date: Thu, 30 Oct 2014 22:07:00 +0100

> This patch changes SPARC write barriers to be just release barriers.  I
> haven't tested this, so this is based on my understanding of the SPARC
> memory model (TSO).

The sparc memory model is variable.

It can be TSO, PSO, or RMO.

It is controlled by a bit in the processor state register, and not
all cpus support all memory models.

Linux happens to run all threads in TSO currently, but this is not
something GLIBC or any userland code should really depend upon.

So we should use whatever memory barriers are necessary in the least
strict memory model possible, which is RMO.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]