Re: [PATCHES] Try again: S_LOCK reduced contention - Mailing list pgsql-hackers

From dg@illustra.com (David Gould)
Subject Re: [PATCHES] Try again: S_LOCK reduced contention
Date
Msg-id 9806100553.AA01081@hawk.illustra.com
Whole thread Raw
In response to Re: [PATCHES] Try again: S_LOCK reduced contention  (Bruce Momjian <maillist@candle.pha.pa.us>)
Responses Re: [HACKERS] Re: [PATCHES] Try again: S_LOCK reduced contention  (Bruce Momjian <maillist@candle.pha.pa.us>)
List pgsql-hackers
> > 1.6. New patch to follow.
> >
> >    The current S_LOCK and TAS() implementations (my patch of late May) are
> >    slower than they need to be and cause more code bloat than they need to.
> >    The bloat is caused by using a macro to inline a relatively complex bit
> >    of code that is only used in the blocked lock case. I suspect the slowness
> >    is caused at least partly by the macro as it requires more registers.
> >
> >    I have developed a new patch that separates out the lock available case
> >    from the busywaiting case and that uses the GCC _inline_ facilty to make
> >    the asm interface still look as clean as a function while not costing
> >    anything. For a preview, see
>
> Quite and analysis.  I want to comment on the code more, but I just want

Please do. I am very interested in reactions or followup investigations.

> to point out now that many of our i386 platforms are not GNU.  I think
> we have to use macros.  I can't think of any GNU-specific code in the
> source tree at this point, and I don't think it makes sense add it now
> just to make the code look a litter cleaner.

Most of the original tas() __asm__() implementations are GCC specific. This
includes all the Linux platforms except PPC, all the *BSD platforms, even the
VAX. GCC is also fairly commonly used even on the commercial OSes.

As far as I can tell, the only C coded platforms that are not GCC specific
are SCO i386 and SunOS/Solaris on Sun3 and Sparc. The other non-GCC platforms
have external tas.s function implementations (HP), or have system specific
calls (AIX, OSF, SGI, Nextstep).

Finally, the difference between a tas() function implementation and the best
possible inline implementation appears to be only 0.06 microseconds on a P133.
This will add 0.0003 seconds to startup. On SCO only. On Sparc this is a leaf
call and possibly even cheaper. No other platforms are affected.

Remember also that I am adding two features that previously did not exist,
backoff, and stuck lock detection.

-dg

David Gould            dg@illustra.com           510.628.3783 or 510.305.9468
Informix Software  (No, really)         300 Lakeside Drive  Oakland, CA 94612
"If you lie to the compiler, it will get its revenge."  -- Henry Spencer

pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [PATCHES] Try again: S_LOCK reduced contention
Next
From: "Matthew N. Dodd"
Date:
Subject: Re: [HACKERS] Re: [PATCHES] Try again: S_LOCK reduced contention