]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40602: Add _Py_HashPointerRaw() function (GH-20056)
authorVictor Stinner <vstinner@python.org>
Tue, 12 May 2020 16:46:20 +0000 (18:46 +0200)
committerGitHub <noreply@github.com>
Tue, 12 May 2020 16:46:20 +0000 (18:46 +0200)
Add a new _Py_HashPointerRaw() function which avoids replacing -1
with -2 to micro-optimize hash table using pointer keys: using
_Py_hashtable_hash_ptr() hash function.

Include/pyhash.h
Python/hashtable.c
Python/pyhash.c

index 2f398589cee7efd5b5e511e32651d15085c3d801..4437b870332bdef3e9e5e7fa361f6d3b02f2207b 100644 (file)
@@ -9,6 +9,8 @@ extern "C" {
 #ifndef Py_LIMITED_API
 PyAPI_FUNC(Py_hash_t) _Py_HashDouble(double);
 PyAPI_FUNC(Py_hash_t) _Py_HashPointer(const void*);
+// Similar to _Py_HashPointer(), but don't replace -1 with -2
+PyAPI_FUNC(Py_hash_t) _Py_HashPointerRaw(const void*);
 PyAPI_FUNC(Py_hash_t) _Py_HashBytes(const void*, Py_ssize_t);
 #endif
 
index 1548c2e4618c3ec65f11e0b15fe96b41a0fee278..90fe34e62801612db8da62b89d56259e6921b2de 100644 (file)
@@ -109,7 +109,7 @@ _Py_hashtable_hash_ptr(struct _Py_hashtable_t *ht, const void *pkey)
 {
     void *key;
     _Py_HASHTABLE_READ_KEY(ht, pkey, key);
-    return (Py_uhash_t)_Py_HashPointer(key);
+    return (Py_uhash_t)_Py_HashPointerRaw(key);
 }
 
 
index a6f42e71cf643c0b7e4971504e541d2a57df9e31..3843079fbbce14ea13b7702e2c3e38adfc247dfc 100644 (file)
@@ -129,16 +129,22 @@ _Py_HashDouble(double v)
 }
 
 Py_hash_t
-_Py_HashPointer(const void *p)
+_Py_HashPointerRaw(const void *p)
 {
-    Py_hash_t x;
     size_t y = (size_t)p;
     /* bottom 3 or 4 bits are likely to be 0; rotate y by 4 to avoid
        excessive hash collisions for dicts and sets */
     y = (y >> 4) | (y << (8 * SIZEOF_VOID_P - 4));
-    x = (Py_hash_t)y;
-    if (x == -1)
+    return (Py_hash_t)y;
+}
+
+Py_hash_t
+_Py_HashPointer(const void *p)
+{
+    Py_hash_t x = _Py_HashPointerRaw(p);
+    if (x == -1) {
         x = -2;
+    }
     return x;
 }