]> granicus.if.org Git - postgresql/commit
Fix s_lock.h PPC assembly code to be compatible with native AIX assembler.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 29 Aug 2015 20:09:25 +0000 (16:09 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 29 Aug 2015 20:09:25 +0000 (16:09 -0400)
commitb5a22d8bbda6f53740c8c1813ceb78f13d9da779
treee47bbe45ca0493fc6f7b1b35cfded872547d15aa
parentbbe6d231a0819915081e4693eaa02a31ac2fef6c
Fix s_lock.h PPC assembly code to be compatible with native AIX assembler.

On recent AIX it's necessary to configure gcc to use the native assembler
(because the GNU assembler hasn't been updated to handle AIX 6+).  This
caused PG builds to fail with assembler syntax errors, because we'd try
to compile s_lock.h's gcc asm fragment for PPC, and that assembly code
relied on GNU-style local labels.  We can't substitute normal labels
because it would fail in any file containing more than one inlined use of
tas().  Fortunately, that code is stable enough, and the PPC ISA is simple
enough, that it doesn't seem like too much of a maintenance burden to just
hand-code the branch offsets, removing the need for any labels.

Note that the AIX assembler only accepts "$" for the location counter
pseudo-symbol.  The usual GNU convention is "."; but it appears that all
versions of gas for PPC also accept "$", so in theory this patch will not
break any other PPC platforms.

This has been reported by a few people, but Steve Underwood gets the credit
for being the first to pursue the problem far enough to understand why it
was failing.  Thanks also to Noah Misch for additional testing.
src/include/storage/s_lock.h