From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mailsrv.cs.umass.edu (mailsrv.cs.umass.edu [128.119.240.136]) by sourceware.org (Postfix) with ESMTPS id 511483861C30 for ; Wed, 11 Mar 2020 06:13:45 +0000 (GMT) Received: from [10.28.58.21] (unknown [150.203.68.60]) by mailsrv.cs.umass.edu (Postfix) with ESMTPSA id 4FEF2401A578; Wed, 11 Mar 2020 02:13:44 -0400 (EDT) Reply-To: moss@cs.umass.edu Subject: Re: gcc and 128-bit compare/exchange To: "cygwin@cygwin.com" References: <66f51c13-4c87-3bd6-3b8e-01901155ef2a@SystematicSw.ab.ca> <0a2c77b2-7ff2-8118-8631-29d186184ad9@SystematicSw.ab.ca> From: Eliot Moss Message-ID: <0fc8a150-99b1-34dc-0dfb-a096fc3b2096@cs.umass.edu> Date: Wed, 11 Mar 2020 02:13:40 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0 MIME-Version: 1.0 In-Reply-To: <0a2c77b2-7ff2-8118-8631-29d186184ad9@SystematicSw.ab.ca> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, SPF_HELO_NONE, SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Mar 2020 06:13:46 -0000 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