pgsql: Add POPCNT support for MSVC x86_64 builds - Mailing list pgsql-committers

From David Rowley
Subject pgsql: Add POPCNT support for MSVC x86_64 builds
Date
Msg-id E1mCvtc-0000dv-Pn@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Add POPCNT support for MSVC x86_64 builds

02a6a54ec added code to make use of the POPCNT instruction when available
for many of our common platforms.  Here we do the same for MSVC for x86_64
machines.

MSVC's intrinsic functions for popcnt seem to differ from GCCs in that
they always appear to emit the popcnt instructions.  In GCC the behavior
will depend on if the source file was compiled with -mpopcnt or not.  For
this reason, the MSVC intrinsic function has been lumped into the
pg_popcount*_asm function, however doing that sort of invalidates the name
of that function, so let's rename it to pg_popcount*_fast().

Author: David Rowley
Reviewed-by: John Naylor
Discussion: https://postgr.es/m/CAApHDvqL3cbbK%3DGzNcwzsNR9Gi%2BaUvTudKkC4XgnQfXirJ_oRQ%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2e281249af6c702fd057f34150fd9ac6cb8c7a8b

Modified Files
--------------
src/port/pg_bitutils.c | 48 +++++++++++++++++++++++++++++++++---------------
1 file changed, 33 insertions(+), 15 deletions(-)


pgsql-committers by date:

Previous
From: Bruce Momjian
Date:
Subject: pgsql: doc: mention pg_upgrade extension script
Next
From: Amit Kapila
Date:
Subject: pgsql: Fix typo in 022_twophase_cascade.pl.