diff options
author | DJ Delorie <dj@redhat.com> | 2001-08-17 21:14:20 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2001-08-17 21:14:20 +0000 |
commit | 68a41de77de8855f8a6647c5fceccc00f6ac04f6 (patch) | |
tree | bf2a2e05d3a5f94a8d21d87eb860eb5302562767 /libiberty/hashtab.c | |
parent | c85229da173c55014774c3752ee3ce8a42f57128 (diff) | |
download | gdb-68a41de77de8855f8a6647c5fceccc00f6ac04f6.zip gdb-68a41de77de8855f8a6647c5fceccc00f6ac04f6.tar.gz gdb-68a41de77de8855f8a6647c5fceccc00f6ac04f6.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty/hashtab.c')
-rw-r--r-- | libiberty/hashtab.c | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/libiberty/hashtab.c b/libiberty/hashtab.c index 2807802..89bfe08 100644 --- a/libiberty/hashtab.c +++ b/libiberty/hashtab.c @@ -562,7 +562,30 @@ htab_collisions (htab) return (double) htab->collisions / (double) htab->searches; } -/* Hash P as a null-terminated string. */ +/* Hash P as a null-terminated string. + + Copied from gcc/hashtable.c. Zack had the following to say with respect + to applicability, though note that unlike hashtable.c, this hash table + implementation re-hashes rather than chain buckets. + + http://gcc.gnu.org/ml/gcc-patches/2001-08/msg01021.html + From: Zack Weinberg <zackw@panix.com> + Date: Fri, 17 Aug 2001 02:15:56 -0400 + + I got it by extracting all the identifiers from all the source code + I had lying around in mid-1999, and testing many recurrences of + the form "H_n = H_{n-1} * K + c_n * L + M" where K, L, M were either + prime numbers or the appropriate identity. This was the best one. + I don't remember exactly what constituted "best", except I was + looking at bucket-length distributions mostly. + + So it should be very good at hashing identifiers, but might not be + as good at arbitrary strings. + + I'll add that it thoroughly trounces the hash functions recommended + for this use at http://burtleburtle.net/bob/hash/index.html, both + on speed and bucket distribution. I haven't tried it against the + function they just started using for Perl's hashes. */ hashval_t htab_hash_string (p) |