From 10ac811f7c3720761c0fa0cd2b3fe92116b89420 Mon Sep 17 00:00:00 2001 From: Vitaly Goldshteyn Date: Thu, 20 Jun 2024 13:43:52 -0700 Subject: Create `absl::container_internal::c_for_each_fast` for SwissTable. This function is aimed to achieve faster iteration through the entire hash table. It is not ready to be used by the public and stays in `container_internal` namespace. Differences with `absl::c_for_each`: 1. No guarantees on order of iteration. Although for the hash table it is partially not guaranteed already. But we do not even guarantee that it is the same order as in the for loop range. De facto, the order is the same at the moment. 2. No mutating reentrance is allowed. Most notably erasing from the hash_table is not allowed. Based on microbenchmarks, there are following conclusions: 1. c_for_each_fast is clearly faster on big tables with 20-60% speedup. 2. Microbenchmarks show regression on a full small table without any empty slots. We should avoid recommending that for small tables. 3. It seems reasonable to use `c_for_each_fast` in places, where `skip_empty_or_deleted` has significant GCU usage. `skip_empty_or_deleted` usage signals that there are "gaps" between elements, so `c_for_each_fast` should be an improvement. PiperOrigin-RevId: 645142512 Change-Id: I279886b8c8b2545504c2bf7e037d27b2545e044d --- absl/container/internal/raw_hash_set.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'absl/container/internal/raw_hash_set.h') diff --git a/absl/container/internal/raw_hash_set.h b/absl/container/internal/raw_hash_set.h index c63b60e3..a722f522 100644 --- a/absl/container/internal/raw_hash_set.h +++ b/absl/container/internal/raw_hash_set.h @@ -4075,6 +4075,23 @@ struct HashtableFreeFunctionsAccess { }); return num_deleted; } + + template + static void ForEach(Callback& cb, Set* c) { + if (c->empty()) { + return; + } + if (c->is_soo()) { + cb(*c->soo_iterator()); + return; + } + using ElementTypeWithConstness = decltype(*c->begin()); + IterateOverFullSlots( + c->common(), c->slot_array(), [&cb](const ctrl_t*, auto* slot) { + ElementTypeWithConstness& element = Set::PolicyTraits::element(slot); + cb(element); + }); + } }; // Erases all elements that satisfy the predicate `pred` from the container `c`. @@ -4084,6 +4101,16 @@ typename raw_hash_set::size_type EraseIf( return HashtableFreeFunctionsAccess::EraseIf(pred, c); } +// Calls `cb` for all elements in the container `c`. +template +void ForEach(Callback& cb, raw_hash_set* c) { + return HashtableFreeFunctionsAccess::ForEach(cb, c); +} +template +void ForEach(Callback& cb, const raw_hash_set* c) { + return HashtableFreeFunctionsAccess::ForEach(cb, c); +} + namespace hashtable_debug_internal { template struct HashtableDebugAccess> { -- cgit v1.2.3