Re: refactor architecture-specific popcount code
Nathan Bossart <nathandbossart@gmail.com>
From: Nathan Bossart <nathandbossart@gmail.com>
To: John Naylor <johncnaylorls@gmail.com>
Cc: pgsql-hackers@postgresql.org
Date: 2026-01-15T15:59:17Z
Lists: pgsql-hackers
On Thu, Jan 15, 2026 at 04:07:51PM +0700, John Naylor wrote: > Thanks for taking on some technical debt! Thanks for reviewing. > --- a/src/port/pg_popcount_avx512.c > +++ b/src/port/pg_popcount_x86_64.c > > Can we get away with just "x86" for brevity? We generally don't target > 32-bit CPUs for this kind of work, so there's no chance of confusion. WFM. > ``` > -#ifdef USE_AVX512_POPCNT_WITH_RUNTIME_CHECK > +#include "port/pg_bitutils.h" > + > +#ifdef TRY_POPCNT_X86_64 > > #if defined(HAVE__GET_CPUID) || defined(HAVE__GET_CPUID_COUNT) > #include <cpuid.h> > #endif > ``` > > With the above in the x86 .c file, I wonder we can get rid of this > stanza and the "try" symbol and gate only on HAVE_X86_64_POPCNTQ: > > #ifdef HAVE_X86_64_POPCNTQ > #if defined(HAVE__GET_CPUID) || defined(HAVE__CPUID) > #define TRY_POPCNT_X86_64 1 > #endif > #endif > > If we have to be cautious, we could just turn the #error on no CPUID > symbol into "return false". Yeah, the CPUID macro checks do seem overly cautious to me, especially since we've just #error'd when the CPUID intrinsics are missing in pg_crc32c_sse42_choose.c since 2015. That seems to suggest that nobody is trying to build Postgres with a compiler that knows about SSE4.2/POPCNT but not CPUID. For reference, CPUID was introduced in 1993. I bet we could also convert this bit into a configuration-time check: #if defined(_MSC_VER) && defined(_M_AMD64) #define HAVE_X86_64_POPCNTQ #endif > s/fast/sse42/: > > Seems okay in this file, but this isn't the best name, either. Maybe a > comment to head off future "corrections", something like: > "Technically, POPCNT is not part of SSE 4.2, and is not even a vector > operation, but many compilers emit the popcnt instruction with > -msse4.2 anyway." Makes sense. -- nathan
Commits
-
Make use of pg_popcount() in more places.
- f33b8793fd73 19 (unreleased) landed
-
Remove uses of popcount builtins.
- eb9ab7e0930a 19 (unreleased) landed
-
Remove some unnecessary optimizations in popcount code.
- cb7b2e5e8efb 19 (unreleased) landed
-
Remove specialized word-length popcount implementations.
- a4688988835f 19 (unreleased) landed
-
Move x86-64-specific popcount code to pg_popcount_x86.c.
- 79e232ca013c 19 (unreleased) landed
-
Refactor some SIMD and popcount macros.
- 25dc4850747b 19 (unreleased) landed
-
Rename "fast" and "slow" popcount functions.
- 8c6653516c5a 19 (unreleased) landed
-
Rename pg_popcount_avx512.c to pg_popcount_x86.c.
- fbe327e5b465 19 (unreleased) landed
-
Remove trailing zero words from Bitmapsets
- a8c09daa8bb1 17.0 cited
-
Don't use _BitScanForward64/_BitScanReverse64 on 32-bit MSVC builds
- 53ea2b7ad050 16.0 cited