public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: "H.J. Lu" <hjl.tools@gmail.com>
To: Noah Goldstein <goldstein.w.n@gmail.com>
Cc: Wilco Dijkstra <Wilco.Dijkstra@arm.com>,
	GNU C Library <libc-alpha@sourceware.org>
Subject: Re: [PATCH 3/7] Remove atomic_bit_set/bit_test_set
Date: Wed, 6 Jul 2022 12:30:08 -0700	[thread overview]
Message-ID: <CAMe9rOqrr7G8MqiZCKG8zL7eHJhpy=fK_3vo+-bfVRqYxZzZqw@mail.gmail.com> (raw)
In-Reply-To: <CAFUsyf+y7qrFXk-qz6iZw5wkJ40aYh-K_5_RZYy8n993MnkJqA@mail.gmail.com>

On Wed, Jul 6, 2022 at 12:15 PM Noah Goldstein via Libc-alpha
<libc-alpha@sourceware.org> wrote:
>
> On Wed, Jul 6, 2022 at 12:00 PM Wilco Dijkstra <Wilco.Dijkstra@arm.com> wrote:
> >
> > Hi Noah,
> >
> > > > -  if (atomic_bit_test_set (&pd->cancelhandling, TERMINATED_BIT) == 0)
> > > > +  if ((atomic_fetch_or_acquire (&pd->cancelhandling, 1 << TERMINATED_BIT)
> > > > +      & (1 << TERMINATED_BIT)) == 0)
> >
> > > Can these remain macros that setup the bit_test_set properly but
> > > use compiler intrinsics?
> >
> > The fetch_or above is already written in a way that allows GCC to recognize it
> > (it's identical to your do_atomic_or0), so I don't see any issue here. However
> > there is a TERMINATED_BITMASK which might make it more readable.
>
> For non-constant shift values it needs to be like atomic_or4/atomic_or5.
>
> Since this needs to be set up in a particular way it seems worth it to
> keep it as a macro that will do it properly. Fine with replacing the underlying
> atomic op with a compiler intrinsic.

GCC can optimize some atomic operations to locked bit operations.
Have we checked if the new assembly codes are as efficient as the
old ones on x86-64?

-- 
H.J.

  reply	other threads:[~2022-07-06 19:30 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-06 15:14 Wilco Dijkstra
2022-07-06 16:14 ` Noah Goldstein
2022-07-06 18:25   ` Noah Goldstein
2022-07-06 18:59     ` Wilco Dijkstra
2022-07-06 19:14       ` Noah Goldstein
2022-07-06 19:30         ` H.J. Lu [this message]
2022-07-06 19:36         ` Wilco Dijkstra
2022-07-06 19:51           ` Noah Goldstein
2022-07-06 19:56             ` Noah Goldstein
2022-07-06 20:14               ` Wilco Dijkstra
2022-07-06 20:30                 ` Noah Goldstein
2022-07-06 20:56                   ` H.J. Lu
2022-07-12 17:47                     ` Adhemerval Zanella Netto
2022-07-12 18:09                       ` H.J. Lu
2022-07-12 18:44                         ` Wilco Dijkstra
2022-07-12 19:11                           ` H.J. Lu
2022-07-12 19:18                             ` Noah Goldstein
2022-07-12 20:39                               ` Wilco Dijkstra

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='CAMe9rOqrr7G8MqiZCKG8zL7eHJhpy=fK_3vo+-bfVRqYxZzZqw@mail.gmail.com' \
    --to=hjl.tools@gmail.com \
    --cc=Wilco.Dijkstra@arm.com \
    --cc=goldstein.w.n@gmail.com \
    --cc=libc-alpha@sourceware.org \
    /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).