]>
git.saurik.com Git - redis.git/blob - deps/jemalloc.orig/include/jemalloc/internal/ckh.h
1 /******************************************************************************/
2 #ifdef JEMALLOC_H_TYPES
4 typedef struct ckh_s ckh_t
;
5 typedef struct ckhc_s ckhc_t
;
7 /* Typedefs to allow easy function pointer passing. */
8 typedef void ckh_hash_t (const void *, unsigned, size_t *, size_t *);
9 typedef bool ckh_keycomp_t (const void *, const void *);
11 /* Maintain counters used to get an idea of performance. */
12 /* #define CKH_COUNT */
13 /* Print counter values in ckh_delete() (requires CKH_COUNT). */
14 /* #define CKH_VERBOSE */
17 * There are 2^LG_CKH_BUCKET_CELLS cells in each hash table bucket. Try to fit
18 * one bucket per L1 cache line.
20 #define LG_CKH_BUCKET_CELLS (LG_CACHELINE - LG_SIZEOF_PTR - 1)
22 #endif /* JEMALLOC_H_TYPES */
23 /******************************************************************************/
24 #ifdef JEMALLOC_H_STRUCTS
26 /* Hash table cell. */
34 #define CKH_MAGIC 0x3af2489d
39 /* Counters used to get an idea of performance. */
42 uint64_t nshrinkfails
;
47 /* Used for pseudo-random number generation. */
48 #define CKH_A 1103515241
52 /* Total number of items. */
56 * Minimum and current number of hash table buckets. There are
57 * 2^LG_CKH_BUCKET_CELLS cells per bucket.
59 unsigned lg_minbuckets
;
60 unsigned lg_curbuckets
;
62 /* Hash and comparison functions. */
64 ckh_keycomp_t
*keycomp
;
66 /* Hash table with 2^lg_curbuckets buckets. */
70 #endif /* JEMALLOC_H_STRUCTS */
71 /******************************************************************************/
72 #ifdef JEMALLOC_H_EXTERNS
74 bool ckh_new(ckh_t
*ckh
, size_t minitems
, ckh_hash_t
*hash
,
75 ckh_keycomp_t
*keycomp
);
76 void ckh_delete(ckh_t
*ckh
);
77 size_t ckh_count(ckh_t
*ckh
);
78 bool ckh_iter(ckh_t
*ckh
, size_t *tabind
, void **key
, void **data
);
79 bool ckh_insert(ckh_t
*ckh
, const void *key
, const void *data
);
80 bool ckh_remove(ckh_t
*ckh
, const void *searchkey
, void **key
,
82 bool ckh_search(ckh_t
*ckh
, const void *seachkey
, void **key
, void **data
);
83 void ckh_string_hash(const void *key
, unsigned minbits
, size_t *hash1
,
85 bool ckh_string_keycomp(const void *k1
, const void *k2
);
86 void ckh_pointer_hash(const void *key
, unsigned minbits
, size_t *hash1
,
88 bool ckh_pointer_keycomp(const void *k1
, const void *k2
);
90 #endif /* JEMALLOC_H_EXTERNS */
91 /******************************************************************************/
92 #ifdef JEMALLOC_H_INLINES
94 #endif /* JEMALLOC_H_INLINES */
95 /******************************************************************************/