Re: remove open-coded popcount in acl.c - Mailing list pgsql-hackers

From Álvaro Herrera
Subject Re: remove open-coded popcount in acl.c
Date
Msg-id 202503121623.i4enp6airsfl@alvherre.pgsql
Whole thread Raw
In response to remove open-coded popcount in acl.c  (Nathan Bossart <nathandbossart@gmail.com>)
Responses Re: remove open-coded popcount in acl.c
List pgsql-hackers
On 2025-Mar-12, Nathan Bossart wrote:

> There's a count_one_bits() function in acl.c that can be replaced with a
> call to pg_popcount64().  This isn't performance-critical code, but IMHO we
> might as well use the centralized implementation.

Makes sense.  Patch looks good to me.

> @@ -5532,7 +5514,7 @@ select_best_grantor(Oid roleId, AclMode privileges,
>           */
>          if (otherprivs != ACL_NO_RIGHTS)
>          {
> -            int            nnewrights = count_one_bits(otherprivs);
> +            int            nnewrights = pg_popcount64(otherprivs);

Strange: this code is not covered by any tests.

https://coverage.postgresql.org/src/backend/utils/adt/acl.c.gcov.html#5533
https://coverage.postgresql.org/src/backend/utils/adt/acl.c.gcov.html#5438

-- 
Álvaro Herrera        Breisgau, Deutschland  —  https://www.EnterpriseDB.com/



pgsql-hackers by date:

Previous
From: Nazir Bilal Yavuz
Date:
Subject: Re: Add pg_buffercache_evict_all() and pg_buffercache_mark_dirty[_all]() functions
Next
From: Álvaro Herrera
Date:
Subject: Re: Document NULL