pgsql: Add POPCNT support for MSVC x86_64 builds

Поиск
Список
Период
Сортировка
От David Rowley
Тема pgsql: Add POPCNT support for MSVC x86_64 builds
Дата
Msg-id E1mCvtc-0000dv-Pn@gemulon.postgresql.org
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: pgsql: doc: mention pg_upgrade extension script
Следующее
От: Amit Kapila
Дата:
Сообщение: pgsql: Fix typo in 022_twophase_cascade.pl.