]> mj.ucw.cz Git - libucw.git/blob - ucw/hashfunc.h
Merge branch 'v3.12.4'
[libucw.git] / ucw / hashfunc.h
1 /*
2  *      UCW Library -- Hyper-super-meta-alt-control-shift extra fast
3  *      str_len() and hash_*() routines
4  *
5  *      (c) 2002, Robert Spalek <robert@ucw.cz>
6  *
7  *      This software may be freely distributed and used according to the terms
8  *      of the GNU Lesser General Public License.
9  */
10
11 #ifndef _UCW_HASHFUNC_H
12 #define _UCW_HASHFUNC_H
13
14 #include "ucw/lib.h"
15
16 /*** === String hashes [[strhash]] ***/
17
18 /* The following functions need str to be aligned to sizeof(uns).  */
19 uns str_len_aligned(const char *str) PURE; /** Get the string length (not a really useful hash function, but there is no better place for it). The string must be aligned to sizeof(uns). For unaligned see @str_len(). **/
20 uns hash_string_aligned(const char *str) PURE; /** Hash the string. The string must be aligned to sizeof(uns). For unaligned see @hash_string(). **/
21 uns hash_block_aligned(const byte *buf, uns len) PURE; /** Hash arbitrary data. They must be aligned to sizeof(uns). For unaligned see @hash_block(). **/
22
23 #ifdef  CPU_ALLOW_UNALIGNED
24 #define str_len(str)            str_len_aligned(str)
25 #define hash_string(str)        hash_string_aligned(str)
26 #define hash_block(str, len)    hash_block_aligned(str, len)
27 #else
28 uns str_len(const char *str) PURE; /** Get the string length. If you know it is aligned to sizeof(uns), you can use faster @str_len_aligned(). **/
29 uns hash_string(const char *str) PURE; /** Hash the string. If it is aligned to sizeof(uns), you can use faster @hash_string_aligned(). **/
30 uns hash_block(const byte *buf, uns len) PURE; /** Hash arbitrary data. If they are aligned to sizeof(uns), use faster @hash_block_aligned(). **/
31 #endif
32
33 uns hash_string_nocase(const char *str) PURE; /** Hash the string in a case insensitive way. Works only with ASCII characters. **/
34
35 /*** === Integer hashes [[inthash]] ***/
36
37 /***
38  * We hash integers by multiplying by a reasonably large prime with
39  * few ones in its binary form (to give the compiler the possibility
40  * of using shifts and adds on architectures where multiplication
41  * instructions are slow).
42  */
43 static inline uns CONST hash_u32(uns x) { return 0x01008041*x; } /** Hash a 32 bit unsigned integer. **/
44 static inline uns CONST hash_u64(u64 x) { return hash_u32((uns)x ^ (uns)(x >> 32)); } /** Hash a 64 bit unsigned integer. **/
45 static inline uns CONST hash_pointer(void *x) { return ((sizeof(x) <= 4) ? hash_u32((uns)(uintptr_t)x) : hash_u64((u64)(uintptr_t)x)); } /** Hash a pointer. **/
46
47 #endif