X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_hashtable.c;h=840041622c41a5456f991336b42d70abfebcad1c;hb=c0ecfba627c1d6c3f46d59bd4e5e6f883a494dc4;hp=fe74dc774f4be236805d2cc9e06c068864fa1b89;hpb=266af4b5b19da7bee8e7445288c7c1cb3ee194c7;p=palacios.git diff --git a/palacios/src/palacios/vmm_hashtable.c b/palacios/src/palacios/vmm_hashtable.c index fe74dc7..8400416 100644 --- a/palacios/src/palacios/vmm_hashtable.c +++ b/palacios/src/palacios/vmm_hashtable.c @@ -66,7 +66,7 @@ struct hashtable { -uint_t do_hash(struct hashtable * htable, addr_t key) { +static inline uint_t do_hash(struct hashtable * htable, addr_t key) { /* Aim to protect against poor hash functions by adding logic here * - logic taken from java 1.4 hashtable source */ uint_t i = htable->hash_fn(key); @@ -93,7 +93,7 @@ uint_t do_hash(struct hashtable * htable, addr_t key) { #error Define GOLDEN_RATIO_PRIME for your wordsize. #endif -ulong_t hash_long(ulong_t val, uint_t bits) { +ulong_t v3_hash_long(ulong_t val, uint_t bits) { ulong_t hash = val; #ifdef __V3_64BIT__ @@ -122,7 +122,7 @@ ulong_t hash_long(ulong_t val, uint_t bits) { /* HASH GENERIC MEMORY BUFFER */ /* ELF HEADER HASH FUNCTION */ -ulong_t hash_buffer(uchar_t * msg, uint_t length) { +ulong_t v3_hash_buffer(uchar_t * msg, uint_t length) { ulong_t hash = 0; ulong_t temp = 0; uint_t i; @@ -187,12 +187,22 @@ static const uint_t primes[] = { 805306457, 1610612741 }; +// this assumes that the max load factor is .65 +static const uint_t load_factors[] = { + 35, 64, 126, 253, + 500, 1003, 2002, 3999, + 7988, 15986, 31953, 63907, + 127799, 255607, 511182, 1022365, + 2044731, 4089455, 8178897, 16357798, + 32715575, 65431158, 130862298, 261724573, + 523449198, 1046898282 }; + const uint_t prime_table_length = sizeof(primes) / sizeof(primes[0]); -const float max_load_factor = 0.65; + /*****************************************************************************/ -struct hashtable * create_hashtable(uint_t min_size, +struct hashtable * v3_create_htable(uint_t min_size, uint_t (*hash_fn) (addr_t), int (*eq_fn) (addr_t, addr_t)) { struct hashtable * htable; @@ -212,6 +222,10 @@ struct hashtable * create_hashtable(uint_t min_size, } } + if (prime_index==prime_table_length) { + return NULL; + } + htable = (struct hashtable *)V3_Malloc(sizeof(struct hashtable)); if (htable == NULL) { @@ -233,7 +247,7 @@ struct hashtable * create_hashtable(uint_t min_size, htable->entry_count = 0; htable->hash_fn = hash_fn; htable->eq_fn = eq_fn; - htable->load_limit = (uint_t) v3_ceil((double)(size * max_load_factor)); + htable->load_limit = load_factors[prime_index]; return htable; } @@ -317,18 +331,18 @@ static int hashtable_expand(struct hashtable * htable) { htable->table_length = new_size; - htable->load_limit = (uint_t) v3_ceil(new_size * max_load_factor); + htable->load_limit = load_factors[htable->prime_index]; return -1; } /*****************************************************************************/ -uint_t hashtable_count(struct hashtable * htable) { +uint_t v3_htable_count(struct hashtable * htable) { return htable->entry_count; } /*****************************************************************************/ -int hashtable_insert(struct hashtable * htable, addr_t key, addr_t value) { +int v3_htable_insert(struct hashtable * htable, addr_t key, addr_t value) { /* This method allows duplicate keys - but they shouldn't be used */ uint_t index; struct hash_entry * new_entry; @@ -365,7 +379,7 @@ int hashtable_insert(struct hashtable * htable, addr_t key, addr_t value) { -int hashtable_change(struct hashtable * htable, addr_t key, addr_t value, int free_value) { +int v3_htable_change(struct hashtable * htable, addr_t key, addr_t value, int free_value) { struct hash_entry * tmp_entry; uint_t hash_value; uint_t index; @@ -394,7 +408,7 @@ int hashtable_change(struct hashtable * htable, addr_t key, addr_t value, int fr -int hashtable_inc(struct hashtable * htable, addr_t key, addr_t value) { +int v3_htable_inc(struct hashtable * htable, addr_t key, addr_t value) { struct hash_entry * tmp_entry; uint_t hash_value; uint_t index; @@ -418,7 +432,7 @@ int hashtable_inc(struct hashtable * htable, addr_t key, addr_t value) { } -int hashtable_dec(struct hashtable * htable, addr_t key, addr_t value) { +int v3_htable_dec(struct hashtable * htable, addr_t key, addr_t value) { struct hash_entry * tmp_entry; uint_t hash_value; uint_t index; @@ -446,7 +460,7 @@ int hashtable_dec(struct hashtable * htable, addr_t key, addr_t value) { /*****************************************************************************/ /* returns value associated with key */ -addr_t hashtable_search(struct hashtable * htable, addr_t key) { +addr_t v3_htable_search(struct hashtable * htable, addr_t key) { struct hash_entry * cursor; uint_t hash_value; uint_t index; @@ -472,7 +486,7 @@ addr_t hashtable_search(struct hashtable * htable, addr_t key) { /*****************************************************************************/ /* returns value associated with key */ -addr_t hashtable_remove(struct hashtable * htable, addr_t key, int free_key) { +addr_t v3_htable_remove(struct hashtable * htable, addr_t key, int free_key) { /* TODO: consider compacting the table when the load factor drops enough, * or provide a 'compact' method. */ @@ -514,7 +528,7 @@ addr_t hashtable_remove(struct hashtable * htable, addr_t key, int free_key) { /*****************************************************************************/ /* destroy */ -void hashtable_destroy(struct hashtable * htable, int free_values, int free_keys) { +void v3_free_htable(struct hashtable * htable, int free_values, int free_keys) { uint_t i; struct hash_entry * cursor;; struct hash_entry **table = htable->table; @@ -565,7 +579,7 @@ void hashtable_destroy(struct hashtable * htable, int free_values, int free_keys -struct hashtable_iter * create_hashtable_iterator(struct hashtable * htable) { +struct hashtable_iter * v3_create_htable_iter(struct hashtable * htable) { uint_t i; uint_t table_length; @@ -597,18 +611,18 @@ struct hashtable_iter * create_hashtable_iterator(struct hashtable * htable) { } -addr_t hashtable_get_iter_key(struct hashtable_iter * iter) { +addr_t v3_htable_get_iter_key(struct hashtable_iter * iter) { return iter->entry->key; } -addr_t hashtable_get_iter_value(struct hashtable_iter * iter) { +addr_t v3_htable_get_iter_value(struct hashtable_iter * iter) { return iter->entry->value; } /* advance - advance the iterator to the next element * returns zero if advanced to end of table */ -int hashtable_iterator_advance(struct hashtable_iter * iter) { +int v3_htable_iter_advance(struct hashtable_iter * iter) { uint_t j; uint_t table_length; struct hash_entry ** table; @@ -658,7 +672,7 @@ int hashtable_iterator_advance(struct hashtable_iter * iter) { * If you want the value, read it before you remove: * beware memory leaks if you don't. * Returns zero if end of iteration. */ -int hashtable_iterator_remove(struct hashtable_iter * iter, int free_key) { +int v3_htable_iter_remove(struct hashtable_iter * iter, int free_key) { struct hash_entry * remember_entry; struct hash_entry * remember_parent; int ret; @@ -682,7 +696,7 @@ int hashtable_iterator_remove(struct hashtable_iter * iter, int free_key) { /* Advance the iterator, correcting the parent */ remember_parent = iter->parent; - ret = hashtable_iterator_advance(iter); + ret = v3_htable_iter_advance(iter); if (iter->parent == remember_entry) { iter->parent = remember_parent; @@ -694,7 +708,7 @@ int hashtable_iterator_remove(struct hashtable_iter * iter, int free_key) { /* returns zero if not found */ -int hashtable_iterator_search(struct hashtable_iter * iter, +int v3_htable_iter_search(struct hashtable_iter * iter, struct hashtable * htable, addr_t key) { struct hash_entry * entry; struct hash_entry * parent; @@ -723,6 +737,11 @@ int hashtable_iterator_search(struct hashtable_iter * iter, return 0; } +void v3_destroy_htable_iter(struct hashtable_iter * iter) { + if (iter) { + V3_Free(iter); + } +}