X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fhash-functions.c;h=ff9ea895cacd66b91e012e26b9add4f5e09f2608;hb=037d8f6e7932459b5d0fb479a2c5030a8088f3d1;hp=f9f1f0e165ef2db3801a65890ba7c9798aacda8c;hpb=14aac9fe7a7efbb6c9bded2ed5969a643cb76645;p=pspp diff --git a/src/libpspp/hash-functions.c b/src/libpspp/hash-functions.c index f9f1f0e165..ff9ea895ca 100644 --- a/src/libpspp/hash-functions.c +++ b/src/libpspp/hash-functions.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2008, 2009 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2008, 2009, 2010, 2011, 2012, 2019 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,8 +15,50 @@ along with this program. If not, see . */ #include -#include -#include + +#include "libpspp/hash-functions.h" + +#if 0 +/* Enable this code only for testing! Theoretically everything + should still work, but very inefficient hash tables will result, + meaning that the code will be slow. */ +#warning "HASHING FUNCTIONS ARE DISABLED! EXPECT LOTS OF HASH COLLISIONS!!!" + +#include "libpspp/compiler.h" + + +unsigned int +hash_bytes (const void *b UNUSED, size_t s UNUSED, unsigned int basis UNUSED) +{ + return 0; +} + +unsigned int +hash_string (const char *s UNUSED, unsigned int basis UNUSED) +{ + return 0; +} + +unsigned int +hash_int (int i UNUSED, unsigned int basis UNUSED) +{ + return 0; +} + +unsigned int +hash_double (double d UNUSED, unsigned int basis UNUSED) +{ + return 0; +} + +unsigned int +hash_pointer (const void *p UNUSED, unsigned int basis UNUSED) +{ + return 0; +} + +#else + #include #include #include @@ -100,45 +142,6 @@ hash_string (const char *s, unsigned int basis) return hash_bytes (s, strlen (s), basis); } -/* Returns a hash value for null-terminated string S, with - lowercase and uppercase letters treated as equal, starting - from BASIS. */ -unsigned int -hash_case_string (const char *s, unsigned int basis) -{ - size_t n = strlen (s); - uint32_t a, b, c; - uint32_t tmp[3]; - int i; - - a = b = c = 0xdeadbeef + n + basis; - - while (n >= 12) - { - for (i = 0; i < 12; i++) - ((unsigned char *)tmp)[i] = toupper ((unsigned char) s[i]); - a += tmp[0]; - b += tmp[1]; - c += tmp[2]; - HASH_MIX (a, b, c); - n -= 12; - s += 12; - } - - if (n > 0) - { - memset (tmp, 0, 12); - for (i = 0; i < n; i++) - ((unsigned char *)tmp)[i] = toupper ((unsigned char) s[i]); - a += tmp[0]; - b += tmp[1]; - c += tmp[2]; - } - - HASH_FINAL (a, b, c); - return c; -} - /* Returns a hash value for integer X, starting from BASIS. */ unsigned int hash_int (int x, unsigned int basis) @@ -157,18 +160,30 @@ hash_int (int x, unsigned int basis) unsigned int hash_double (double d, unsigned int basis) { -#if SIZEOF_DOUBLE == 8 - uint32_t tmp[2]; - uint32_t a, b, c; + if (sizeof (double) == 8) + { + uint32_t tmp[2]; + uint32_t a, b, c; - a = b = c = 0xdeadbeef + 8 + basis; + a = b = c = 0xdeadbeefU + 8 + basis; - memcpy (tmp, &d, 8); - a += tmp[0]; - b += tmp[1]; - HASH_FINAL (a, b, c); - return c; -#else /* SIZEOF_DOUBLE != 8 */ - return hash_bytes (&d, sizeof d, basis); -#endif /* SIZEOF_DOUBLE != 8 */ + memcpy (tmp, &d, 8); + a += tmp[0]; + b += tmp[1]; + HASH_FINAL (a, b, c); + return c; + } + else + return hash_bytes (&d, sizeof d, basis); +} + +/* Returns a hash value for pointer P, starting from BASIS. */ +unsigned int +hash_pointer (const void *p, unsigned int basis) +{ + /* Casting to uintptr_t before casting to int suppresses a GCC warning about + on 64-bit platforms. */ + return hash_int ((int) (uintptr_t) p, basis); } + +#endif