]> granicus.if.org Git - postgresql/commit
Marginal performance hack: remove the loop that used to be needed to
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 30 Apr 2007 00:12:08 +0000 (00:12 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 30 Apr 2007 00:12:08 +0000 (00:12 +0000)
commit39a333aa2b2d659f830a78a7d3c6bd43d4caa692
treeb041e19faa0ce7a8a7d278239330e17674944508
parentb1a1ea49da183d521c2a3db676a6ec2b9c306626
Marginal performance hack: remove the loop that used to be needed to
look through a freelist for a chunk of adequate size.  For a long time
now, all elements of a given freelist have been exactly the same
allocated size, so we don't need a loop.  Since the loop never iterated
more than once, you'd think this wouldn't matter much, but it makes a
noticeable savings in a simple test --- perhaps because the compiler
isn't optimizing on a mistaken assumption that the loop would repeat.
AllocSetAlloc is called often enough that saving even a couple of
instructions is worthwhile.
src/backend/utils/mmgr/aset.c