public inbox for cygwin-patches@cygwin.com
 help / color / mirror / Atom feed
From: Mark Geisert <mark@maxrnd.com>
To: cygwin-patches@cygwin.com
Subject: Re: [PATCH] Cygwin: Make gcc-specific code in <sys/cpuset.h> compiler-agnostic
Date: Sat, 8 Jul 2023 13:59:35 -0700	[thread overview]
Message-ID: <589a2704-d690-60f4-4818-687233699c4c@maxrnd.com> (raw)
In-Reply-To: <1f7d3254-234e-378f-a852-63ca5d7ca01f@Shaw.ca>

Brian Inglis wrote:
> On 2023-07-07 12:54, Brian Inglis wrote:
>> On 2023-07-07 03:44, Corinna Vinschen wrote:
>>> Hi Mark,
>>>
>>> On Jul  7 00:41, Mark Geisert wrote:
>>>> The current version of <sys/cpuset.h> cannot be compiled by Clang due to
>>>> the use of __builtin* functions.  Their presence here was a dubious
>>>> optimization anyway, so their usage has been converted to standard
>>>> library functions.  A popcnt (population count of 1 bits in a word)
>>>> function is provided here because there isn't one in the standard library
>>>> or elsewhere in the Cygwin DLL.
>>>
>>> And clang really doesn't provide it?  That's unfortunate.
>>>
>>> Do you really think it's not worth to use it if it's available?
>>>
>>> You could workaround it like this:
>>>
>>>> +/* Modern CPUs have popcnt* instructions but the need here is not worth
>>>> + * worrying about builtins or inline assembler for different compilers. */
>>>> +static inline int
>>>> +__maskpopcnt (__cpu_mask mask)
>>>> +{
>>> #if (__GNUC__ >= 4)
>>>       return __builtin_popcountl (mask);
> 
> Missed the difference in spelling, but clang supports the same builtin functions 
> __builtin_popcount{,l,ll} et. al. or provides *optimized* inline functions if not 
> directly available as an instruction on the architecture.

Clang in its current version 16.0.x has __builtin_popcount*, but not in the 
ancient version 8.0.1 that is currently packaged for Cygwin.  I think that's what 
was behind Jon's earlier comment that perhaps we should remove clang from Cygwin 
unless/until somebody can adopt and maintain an up-to-date version.  :-(.

..mark

  reply	other threads:[~2023-07-08 20:59 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-07  7:41 Mark Geisert
2023-07-07  9:44 ` Corinna Vinschen
2023-07-07 10:13   ` Mark Geisert
2023-07-07 10:45     ` Corinna Vinschen
2023-07-07 15:46   ` Jon Turney
2023-07-07 15:49     ` Corinna Vinschen
2023-07-07 18:54   ` Brian Inglis
2023-07-08 19:22     ` Brian Inglis
2023-07-08 20:59       ` Mark Geisert [this message]
2023-07-08 21:53         ` Mark Geisert
2023-07-09  4:27           ` Brian Inglis
2023-07-09  7:58             ` Mark Geisert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=589a2704-d690-60f4-4818-687233699c4c@maxrnd.com \
    --to=mark@maxrnd.com \
    --cc=cygwin-patches@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).