i965: replace fnv1a hash function with xxhash
authorDmitriy Nester <dmitriynester@gmail.com>
Thu, 27 Feb 2020 13:28:50 +0000 (15:28 +0200)
committerMarge Bot <eric+marge@anholt.net>
Mon, 25 May 2020 19:41:09 +0000 (19:41 +0000)
xxhash is faster than fnv1a in almost all circumstances, so we're
switching to it globally.

Signed-off-by: Dmytro Nester <dmytro.nester@globallogic.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4020>

src/mesa/drivers/dri/i965/brw_program_cache.c

index c1bdaab591c669174a0c0a1c611fa543a9a4693f..90999ab0a4f8d743a9a2d83818310aff8df86b6e 100644 (file)
@@ -54,6 +54,8 @@
 #include "brw_program.h"
 #include "compiler/brw_eu.h"
 #include "util/u_memory.h"
+#define XXH_INLINE_ALL
+#include "util/xxhash.h"
 
 #define FILE_DEBUG_FLAG DEBUG_STATE
 
@@ -96,9 +98,9 @@ brw_stage_cache_id(gl_shader_stage stage)
 static GLuint
 hash_key(struct brw_cache_item *item)
 {
-    uint32_t hash = _mesa_fnv32_1a_offset_bias;
-    hash = _mesa_fnv32_1a_accumulate(hash, item->cache_id);
-    hash = _mesa_fnv32_1a_accumulate_block(hash, item->key, item->key_size);
+    uint32_t hash = 0;
+    hash = XXH32(&item->cache_id, sizeof(item->cache_id), hash);
+    hash = XXH32(item->key, item->key_size, hash);
 
    return hash;
 }