]> granicus.if.org Git - postgresql/commit
Allow icc to use the same atomics infrastructure as gcc.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 31 Aug 2015 20:30:12 +0000 (16:30 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 31 Aug 2015 20:30:12 +0000 (16:30 -0400)
commitcf25b2a2f9a4306637a985cee86a9a987c0b6a7c
tree3746b953f806968d7943cdefa7fe8edd6590e77c
parentf333204bbcd32091311b070e8f8ab4717dd8cadf
Allow icc to use the same atomics infrastructure as gcc.

The atomics headers were written under the impression that icc doesn't
handle gcc-style asm blocks, but this is demonstrably false on x86_[64],
because s_lock.h has done it that way for more than a decade.  (The jury is
still out on whether this also works on ia64, so I'm leaving ia64-related
code alone for the moment.)  Treat gcc and icc the same in these headers.
This is less code and it should improve the results for icc, because we
hadn't gotten around to providing icc-specific implementations for most
of the atomics.
src/include/port/atomics/arch-x86.h
src/include/port/atomics/generic-gcc.h