X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fhash-functions.c;h=ff9ea895cacd66b91e012e26b9add4f5e09f2608;hb=209f7e5ccf28c97641b9e69ef6b9df81efe4dc38;hp=7a8d8162ecaa5f364c984c1a42827994a7cdfd64;hpb=23fd25fa0a2fb9d613f4f9445000e49cc3b83db1;p=pspp diff --git a/src/libpspp/hash-functions.c b/src/libpspp/hash-functions.c index 7a8d8162ec..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, 2010, 2011, 2012 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 @@ -18,7 +18,47 @@ #include "libpspp/hash-functions.h" -#include +#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 @@ -125,7 +165,7 @@ hash_double (double d, unsigned int basis) 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]; @@ -145,3 +185,5 @@ hash_pointer (const void *p, unsigned int basis) on 64-bit platforms. */ return hash_int ((int) (uintptr_t) p, basis); } + +#endif