Skip to content

Commit

Permalink
Some comments about how to use htable_t
Browse files Browse the repository at this point in the history
  • Loading branch information
c42f committed May 11, 2020
1 parent ab0f330 commit fb1970c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/support/htable.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,21 @@
#define HT_N_INLINE 32

#include "analyzer_annotations.h"
#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif

// Power-of-two hash table with linear probing.
//
// Keys and values are stored as in consecutive elements
// key = table[2*i]
// value = table[2*i+1]
// where `2*i < size`. An empty slot at index `i` is indicated with
// `value == HT_NOTFOUND`.
//
// `_space` is reserved space for efficiently allocating small tables.
typedef struct {
size_t size;
void **table;
Expand All @@ -20,13 +30,15 @@ typedef struct {
// define this to be an invalid key/value
#define HT_NOTFOUND ((void*)1)

// initialize and free
// initialize hash table, reserving space for `size` expected number of
// elements. (Expect `h->size > size` for efficient occupancy factor.)
htable_t *htable_new(htable_t *h, size_t size);
void htable_free(htable_t *h);

// clear and (possibly) change size
void htable_reset(htable_t *h, size_t sz);

// Lookup and mutation. See htable.inc for detail.
#define HTPROT(HTNAME) \
void *HTNAME##_get(htable_t *h, void *key) JL_NOTSAFEPOINT; \
void HTNAME##_put(htable_t *h, void *key, void *val) JL_NOTSAFEPOINT; \
Expand Down

0 comments on commit fb1970c

Please sign in to comment.