Re: Remove fls(), use pg_bitutils.h facilities instead?
David Rowley <dgrowleyml@gmail.com>
From: David Rowley <dgrowleyml@gmail.com>
To: Thomas Munro <thomas.munro@gmail.com>
Cc: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2022-07-20T04:43:03Z
Lists: pgsql-hackers
On Wed, 20 Jul 2022 at 16:21, Thomas Munro <thomas.munro@gmail.com> wrote:
> Back in commit 4f658dc8 we gained src/port/fls.c. As anticipated by
> its commit message, we later finished up with something better in
> src/include/port/pg_bitutils.h. fls() ("find last set") is an
> off-by-one cousin of pg_leftmost_one_pos32().
Seems like a good idea to me.
One thing I noticed was that pg_leftmost_one_pos32() expects a uint32
but the new function passes it an int. Is it worth mentioning that's
ok in a comment somewhere or maybe adding an explicit cast?
David
Commits
-
Remove fls(), use pg_leftmost_one_pos32() instead.
- 4f1f5a7f85ce 16.0 landed
-
Extend size_t support in pg_bitutils.h.
- 3225399021b6 16.0 landed
-
Support fls().
- 4f658dc851a7 9.2.0 cited