From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26455 invoked by alias); 3 May 2006 04:19:35 -0000 Received: (qmail 26443 invoked by uid 22791); 3 May 2006 04:19:34 -0000 X-Spam-Check-By: sourceware.org Received: from omta05sl.mx.bigpond.com (HELO omta05sl.mx.bigpond.com) (144.140.93.195) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 03 May 2006 04:19:31 +0000 Received: from grove.modra.org ([144.136.172.108]) by omta05sl.mx.bigpond.com with ESMTP id <20060503041927.QOY25409.omta05sl.mx.bigpond.com@grove.modra.org> for ; Wed, 3 May 2006 04:19:27 +0000 Received: by bubble.grove.modra.org (Postfix, from userid 500) id 735E41DF784; Wed, 3 May 2006 13:49:27 +0930 (CST) Date: Wed, 03 May 2006 04:19:00 -0000 From: Alan Modra To: binutils@sources.redhat.com Subject: Re: [patch] expanding tables for bfd/hash.c Message-ID: <20060503041927.GV11597@bubble.grove.modra.org> Mail-Followup-To: binutils@sources.redhat.com References: <200605011937.k41Jbeuq029555@greed.delorie.com> <20060502072229.GK11597@bubble.grove.modra.org> <200605030116.k431GXNW019776@greed.delorie.com> <20060503034439.GT11597@bubble.grove.modra.org> <200605030352.k433qEPU007078@greed.delorie.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200605030352.k433qEPU007078@greed.delorie.com> User-Agent: Mutt/1.4i X-IsSubscribed: yes Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2006-05/txt/msg00067.txt.bz2 On Tue, May 02, 2006 at 11:52:14PM -0400, DJ Delorie wrote: > > > A quicker alternative might be to leave the default unchanged. There > > are a lot of tests that depend on symbol table order, and some only run > > natively. > > I assume none (or few) tests have more than 4k symbols then? Fortunately, that seems to be the case. > > How about this? > > > > * hash.c (DEFAULT_SIZE): Revert last change. > > (higher_prime_number): Correct test for no larger prime. Don't > > abort on error, instead return 0. Depopulate primes[]. > > (bfd_hash_lookup): If we overflow size, refuse to grow table. > > That looks like a good change. I'm committing a slightly different patch after realising that leaving 8191 in the table means the first table expansion is only doubling in size. Index: bfd/hash.c =================================================================== RCS file: /cvs/src/src/bfd/hash.c,v retrieving revision 1.21 diff -u -p -r1.21 hash.c --- bfd/hash.c 1 May 2006 19:36:27 -0000 1.21 +++ bfd/hash.c 3 May 2006 04:13:05 -0000 @@ -298,10 +298,11 @@ SUBSUBSECTION */ /* The default number of entries to use when creating a hash table. */ -#define DEFAULT_SIZE (4093) +#define DEFAULT_SIZE 4051 /* The following function returns a nearest prime number which is - greater than N, and near a power of two. Copied from libiberty. */ + greater than N, and near a power of two. Copied from libiberty. + Returns zero for ridiculously large N to signify an error. */ static unsigned long higher_prime_number (unsigned long n) @@ -309,18 +310,8 @@ higher_prime_number (unsigned long n) /* These are primes that are near, but slightly smaller than, a power of two. */ static const unsigned long primes[] = { - (unsigned long) 7, - (unsigned long) 13, - (unsigned long) 31, - (unsigned long) 61, (unsigned long) 127, - (unsigned long) 251, - (unsigned long) 509, - (unsigned long) 1021, (unsigned long) 2039, - (unsigned long) 4093, - (unsigned long) 8191, - (unsigned long) 16381, (unsigned long) 32749, (unsigned long) 65521, (unsigned long) 131071, @@ -343,7 +334,7 @@ higher_prime_number (unsigned long n) }; const unsigned long *low = &primes[0]; - const unsigned long *high = &primes[sizeof(primes) / sizeof(primes[0])]; + const unsigned long *high = &primes[sizeof (primes) / sizeof (primes[0])]; while (low != high) { @@ -354,12 +345,8 @@ higher_prime_number (unsigned long n) high = mid; } - /* If we've run out of primes, abort. */ - if (n > *low) - { - fprintf (stderr, "Cannot find prime bigger than %lu\n", n); - abort (); - } + if (n >= *low) + return 0; return *low; } @@ -486,12 +473,19 @@ bfd_hash_lookup (struct bfd_hash_table * if (table->count > table->size * 3 / 4) { - int newsize = higher_prime_number (table->size); + unsigned long newsize = higher_prime_number (table->size); struct bfd_hash_entry **newtable; unsigned int hi; - unsigned int alloc; + unsigned long alloc = newsize * sizeof (struct bfd_hash_entry *); - alloc = newsize * sizeof (struct bfd_hash_entry *); + /* If we can't find a higher prime, or we can't possibly alloc + that much memory, don't try to grow the table. */ + if (newsize == 0 || alloc / sizeof (struct bfd_hash_entry *) != newsize) + { + /* Lie. Stops us trying to grow again for a while. */ + table->count = 0; + return hashp; + } newtable = ((struct bfd_hash_entry **) objalloc_alloc ((struct objalloc *) table->memory, alloc)); @@ -505,7 +499,7 @@ bfd_hash_lookup (struct bfd_hash_table * int index; while (chain_end->next && chain_end->next->hash == chain->hash) - chain_end = chain_end->next; + chain_end = chain_end->next; table->table[hi] = chain_end->next; index = chain->hash % newsize; -- Alan Modra IBM OzLabs - Linux Technology Centre