On 3/11/2020 1:31 AM, Brian Inglis wrote:

A quick followup: I was able to get __sync_val_compare_and_swap_16 to work
(and its bool form).  That will do for now, though of course it's deprecated.

This does get me the inlined asm code.

Digging further into the murk where a simple builtin inline cmpxchg16b isn't.

Doing what you're doing now seems easier and better supported than alternatives.
You can drop stdatomic.h and -latomic as the low level functions are builtins.

You could also write your own inline function using cmpxchg16b directly in asm.

Looks like because of cpu and library requirements, you would have to enable
indirect inline functions in gcc, write libatomic library functions which
support gcc indirect inline functions, to test cpu cx16 feature, then setup
indirection, to bypass mutexes.

There are two issues here:

1) Whether the call is inlined.

2) Whether I get the compare-exchange instruction or a block of code protected
   by a pthread mutex.

The __atomic functions do not inline, as far as I know, from my testing on true
Linux platforms.  But Linux _does_ give me the compare-exchange version of
the function.

What I am really reporting is that Cygwin is giving the pthread mutex form
when it should not be.  My CPU clearly has the capability, and the compiler 
clearly
knows how to emit the instruction, since the __sync form does it.  What is
mysterious and tangled is why libatomic / libc are not delivering the desired
version of the atomic compare-exchange function.

My _guess_ is that having that as an option depends somehow on how gcc is built,
e.g., its build configuration.  I don't know enough about how those ifunc 
mechanisms
work to know if that is it, or if it's something else, but the behavior seems to
be Cygwin-specific.  Hence my report.

Regards - Eliot
--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

Reply via email to