From 5bf5188ea2d31cd162f61b923e56614c446e7ad3 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 9 May 2023 20:47:46 -0600 Subject: [PATCH] [map] Simplify del() --- src/hb-map.hh | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/hb-map.hh b/src/hb-map.hh index 6cf1555db..7cf96e424 100644 --- a/src/hb-map.hh +++ b/src/hb-map.hh @@ -201,15 +201,12 @@ struct hb_hashmap_t } template - bool set_with_hash (KK&& key, uint32_t hash, VV&& value, bool is_delete=false) + bool set_with_hash (KK&& key, uint32_t hash, VV&& value) { if (unlikely (!successful)) return false; if (unlikely ((occupancy + occupancy / 2) >= mask && !resize ())) return false; item_t &item = item_for_hash (key, hash); - if (is_delete && !(item == key)) - return true; /* Trying to delete non-existent key. */ - if (item.is_used ()) { occupancy--; @@ -221,11 +218,10 @@ struct hb_hashmap_t item.value = std::forward (value); item.hash = hash; item.set_used (true); - item.set_tombstone (is_delete); + item.set_tombstone (false); occupancy++; - if (!is_delete) - population++; + population++; return true; } @@ -247,7 +243,15 @@ struct hb_hashmap_t return get_with_hash (key, hb_hash (key)); } - void del (const K &key) { set_with_hash (key, hb_hash (key), item_t::default_value (), true); } + void del (const K &key) + { + auto *item = fetch_item (key, hb_hash (key)); + if (item) + { + item->set_tombstone (true); + population--; + } + } /* Has interface. */ const V& operator [] (K k) const { return get (k); }