]> granicus.if.org Git - postgresql/commit
Fix compiler builtin usage in new pg_bitutils.c
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 15 Feb 2019 16:07:02 +0000 (13:07 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 15 Feb 2019 16:39:56 +0000 (13:39 -0300)
commitfc6c72747ae6db6909fcd7d1adbc3d923ec1fffa
tree56b2b45a42608e52eae0d2602e067f7981c164c3
parentb060e6c1f5b4609718468a0b6562dd03db26ea46
Fix compiler builtin usage in new pg_bitutils.c

Split out these new functions in three parts: one in a new file that
uses the compiler builtin and gets compiled with the -mpopcnt compiler
option if it exists; another one that uses the compiler builtin but not
the compiler option; and finally the fallback with open-coded
algorithms.

Split out the configure logic: in the original commit, it was selecting
to use the -mpopcnt compiler switch together with deciding whether to
use the compiler builtin, but those two things are really separate.
Split them out.  Also, expose whether the builtin exists to
Makefile.global, so that src/port's Makefile can decide whether to
compile the hw-optimized file.

Remove CPUID test for CTZ/CLZ.  Make pg_{right,left}most_ones use either
the compiler intrinsic or open-coded algo; trying to use the
HW-optimized version is a waste of time.  Make them static inline
functions.

Discussion: https://postgr.es/m/20190213221719.GA15976@alvherre.pgsql
config/c-compiler.m4
configure
configure.in
src/Makefile.global.in
src/include/port/pg_bitutils.h
src/port/Makefile
src/port/pg_bitutils.c
src/port/pg_bitutils_hwpopcnt.c [new file with mode: 0644]