pgsql: Choose ppc compare_exchange constant path for more operand value - Mailing list pgsql-committers

From Noah Misch
Subject pgsql: Choose ppc compare_exchange constant path for more operand value
Date
Msg-id E1kRpbj-0004lI-Kk@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Choose ppc compare_exchange constant path for more operand values.

The implementation uses smaller code when the "expected" operand is a
small constant, but the implementation needlessly defined the set of
acceptable constants more narrowly than the ABI does.  Core PostgreSQL
and PGXN don't use the constant path at all, so this is future-proofing.
Back-patch to v13, where commit 30ee5d17c20dbb282a9952b3048d6ad52d56c371
introduced this code.

Reviewed by Tom Lane.  Reported by Christoph Berg.

Discussion: https://postgr.es/m/20201009092825.GD889580@msg.df7cb.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/88ea7a1188d1afb25695124045e0ff81870f55e3

Modified Files
--------------
src/include/port/atomics/arch-ppc.h | 14 ++++----------
src/test/regress/regress.c          |  8 ++++++++
2 files changed, 12 insertions(+), 10 deletions(-)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: Use perfect hash for NFC and NFKC Unicode Normalization quick ch
Next
From: Peter Eisentraut
Date:
Subject: pgsql: Adjust cycle detection examples and tests