93d155bc44
-- 3d20ce6cd6541579abecaba169d4b8716d511272 by Jon Cohen <cohenjon@google.com>: Only use LSAN for clang version >= 3.5. This should fix https://github.com/abseil/abseil-cpp/issues/244 PiperOrigin-RevId: 234675129 -- e15bd4ec7a81aa95cc3d09fa1e0e81d58ae478fb by Conrad Parker <conradparker@google.com>: Fix errors in apply() sample code The following changes are made: * Make the example method public. * Give the two user functions different names to avoid confusion about whether apply() can select the correct overload of a function based on its tuple argument (it can't). * Pass tuple2 to the second example apply() invocation, instead of passing its contents individually. * Fix a s/tuple/tuple3/ typo in the third example apply() invocation. PiperOrigin-RevId: 234223407 -- de0ed71e21bc76ddf9fe715fdbaef74cd0df95c7 by Abseil Team <absl-team@google.com>: First test if a macro is defined to avoid -Wundef. ABSL clients may need to compile their code with the -Wundef warning flag. It will be helpful if ABSL header files can be compiled without the -Wundef warning. How to avoid the -Wundef warning: If a macro may be undefined, we need to first test whether the macro is defined before testing its value. We can't rely on the C preprocessor rule that an undefined macro has the value 0L. PiperOrigin-RevId: 234201123 -- fa484ad7dae0cac21140a96662809ecb0ec8eb5d by Abseil Team <absl-team@google.com>: Internal change. PiperOrigin-RevId: 234185697 -- d69b1baef681e27954b065375ecf9c2320463b2b by Samuel Benzaquen <sbenza@google.com>: Mix pointers more thoroughly. Some pointer alignments interact badly with the mixing constant. By mixing twice we reduce this problem. PiperOrigin-RevId: 234178401 -- 1041d0e474610f3a8fea0db90958857327d6da1c by Samuel Benzaquen <sbenza@google.com>: Record rehashes in the hashtablez struct. Only recording the probe length on insertion causes a huge overestimation of the total probe length at any given time. With natural growth, elements are inserted when the load factor is between (max load/2, max load). However, after a rehash the majority of elements are actually inserted when the load factor is less than max/2 and have a much lower average probe length. Also reset some values when the table is cleared. PiperOrigin-RevId: 234013580 -- 299205caf3c89c47339f7409bc831746602cea84 by Mark Barolak <mbar@google.com>: Fix a sample code snippet that assumes `absl::string_view::const_iterator` is `const char*`. This is generally true, however in C++17 builds, absl::string_view is an alias for std::string_view and on MSVC, the std::string_view::const_iterator is an object instead of just a pointer. PiperOrigin-RevId: 233844595 -- af6c6370cf51a1e6c1469c79dfb2a486a4009136 by Abseil Team <absl-team@google.com>: Internal change. PiperOrigin-RevId: 233773470 -- 6e59e4b8e2bb6101b448f0f32b0bea81fe399ccf by Abseil Team <absl-team@google.com>: fix typo in {Starts|Ends}WithIgnoreCase comment in match.h PiperOrigin-RevId: 233662951 GitOrigin-RevId: 3d20ce6cd6541579abecaba169d4b8716d511272 Change-Id: Ib9a29b1c38c6aedf5d9f3f7f00596e8d30e864dd
275 lines
9.6 KiB
C++
275 lines
9.6 KiB
C++
// Copyright 2018 The Abseil Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// This is a low level library to sample hashtables and collect runtime
|
|
// statistics about them.
|
|
//
|
|
// `HashtablezSampler` controls the lifecycle of `HashtablezInfo` objects which
|
|
// store information about a single sample.
|
|
//
|
|
// `Record*` methods store information into samples.
|
|
// `Sample()` and `Unsample()` make use of a single global sampler with
|
|
// properties controlled by the flags hashtablez_enabled,
|
|
// hashtablez_sample_rate, and hashtablez_max_samples.
|
|
|
|
#ifndef ABSL_CONTAINER_INTERNAL_HASHTABLEZ_SAMPLER_H_
|
|
#define ABSL_CONTAINER_INTERNAL_HASHTABLEZ_SAMPLER_H_
|
|
|
|
#include <atomic>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "absl/base/internal/per_thread_tls.h"
|
|
#include "absl/base/optimization.h"
|
|
#include "absl/container/internal/have_sse.h"
|
|
#include "absl/synchronization/mutex.h"
|
|
#include "absl/utility/utility.h"
|
|
|
|
namespace absl {
|
|
namespace container_internal {
|
|
|
|
// Stores information about a sampled hashtable. All mutations to this *must*
|
|
// be made through `Record*` functions below. All reads from this *must* only
|
|
// occur in the callback to `HashtablezSampler::Iterate`.
|
|
struct HashtablezInfo {
|
|
// Constructs the object but does not fill in any fields.
|
|
HashtablezInfo();
|
|
~HashtablezInfo();
|
|
HashtablezInfo(const HashtablezInfo&) = delete;
|
|
HashtablezInfo& operator=(const HashtablezInfo&) = delete;
|
|
|
|
// Puts the object into a clean state, fills in the logically `const` members,
|
|
// blocking for any readers that are currently sampling the object.
|
|
void PrepareForSampling() EXCLUSIVE_LOCKS_REQUIRED(init_mu);
|
|
|
|
// These fields are mutated by the various Record* APIs and need to be
|
|
// thread-safe.
|
|
std::atomic<size_t> capacity;
|
|
std::atomic<size_t> size;
|
|
std::atomic<size_t> num_erases;
|
|
std::atomic<size_t> max_probe_length;
|
|
std::atomic<size_t> total_probe_length;
|
|
std::atomic<size_t> hashes_bitwise_or;
|
|
std::atomic<size_t> hashes_bitwise_and;
|
|
|
|
// `HashtablezSampler` maintains intrusive linked lists for all samples. See
|
|
// comments on `HashtablezSampler::all_` for details on these. `init_mu`
|
|
// guards the ability to restore the sample to a pristine state. This
|
|
// prevents races with sampling and resurrecting an object.
|
|
absl::Mutex init_mu;
|
|
HashtablezInfo* next;
|
|
HashtablezInfo* dead GUARDED_BY(init_mu);
|
|
|
|
// All of the fields below are set by `PrepareForSampling`, they must not be
|
|
// mutated in `Record*` functions. They are logically `const` in that sense.
|
|
// These are guarded by init_mu, but that is not externalized to clients, who
|
|
// can only read them during `HashtablezSampler::Iterate` which will hold the
|
|
// lock.
|
|
static constexpr int kMaxStackDepth = 64;
|
|
absl::Time create_time;
|
|
int32_t depth;
|
|
void* stack[kMaxStackDepth];
|
|
};
|
|
|
|
inline void RecordRehashSlow(HashtablezInfo* info, size_t total_probe_length) {
|
|
#if SWISSTABLE_HAVE_SSE2
|
|
total_probe_length /= 16;
|
|
#else
|
|
total_probe_length /= 8;
|
|
#endif
|
|
info->total_probe_length.store(total_probe_length, std::memory_order_relaxed);
|
|
info->num_erases.store(0, std::memory_order_relaxed);
|
|
}
|
|
|
|
inline void RecordStorageChangedSlow(HashtablezInfo* info, size_t size,
|
|
size_t capacity) {
|
|
info->size.store(size, std::memory_order_relaxed);
|
|
info->capacity.store(capacity, std::memory_order_relaxed);
|
|
if (size == 0) {
|
|
// This is a clear, reset the total/num_erases too.
|
|
RecordRehashSlow(info, 0);
|
|
}
|
|
}
|
|
|
|
void RecordInsertSlow(HashtablezInfo* info, size_t hash,
|
|
size_t distance_from_desired);
|
|
|
|
inline void RecordEraseSlow(HashtablezInfo* info) {
|
|
info->size.fetch_sub(1, std::memory_order_relaxed);
|
|
info->num_erases.fetch_add(1, std::memory_order_relaxed);
|
|
}
|
|
|
|
HashtablezInfo* SampleSlow(int64_t* next_sample);
|
|
void UnsampleSlow(HashtablezInfo* info);
|
|
|
|
class HashtablezInfoHandle {
|
|
public:
|
|
explicit HashtablezInfoHandle() : info_(nullptr) {}
|
|
explicit HashtablezInfoHandle(HashtablezInfo* info) : info_(info) {}
|
|
~HashtablezInfoHandle() {
|
|
if (ABSL_PREDICT_TRUE(info_ == nullptr)) return;
|
|
UnsampleSlow(info_);
|
|
}
|
|
|
|
HashtablezInfoHandle(const HashtablezInfoHandle&) = delete;
|
|
HashtablezInfoHandle& operator=(const HashtablezInfoHandle&) = delete;
|
|
|
|
HashtablezInfoHandle(HashtablezInfoHandle&& o) noexcept
|
|
: info_(absl::exchange(o.info_, nullptr)) {}
|
|
HashtablezInfoHandle& operator=(HashtablezInfoHandle&& o) noexcept {
|
|
if (ABSL_PREDICT_FALSE(info_ != nullptr)) {
|
|
UnsampleSlow(info_);
|
|
}
|
|
info_ = absl::exchange(o.info_, nullptr);
|
|
return *this;
|
|
}
|
|
|
|
inline void RecordStorageChanged(size_t size, size_t capacity) {
|
|
if (ABSL_PREDICT_TRUE(info_ == nullptr)) return;
|
|
RecordStorageChangedSlow(info_, size, capacity);
|
|
}
|
|
|
|
inline void RecordRehash(size_t total_probe_length) {
|
|
if (ABSL_PREDICT_TRUE(info_ == nullptr)) return;
|
|
RecordRehashSlow(info_, total_probe_length);
|
|
}
|
|
|
|
inline void RecordInsert(size_t hash, size_t distance_from_desired) {
|
|
if (ABSL_PREDICT_TRUE(info_ == nullptr)) return;
|
|
RecordInsertSlow(info_, hash, distance_from_desired);
|
|
}
|
|
|
|
inline void RecordErase() {
|
|
if (ABSL_PREDICT_TRUE(info_ == nullptr)) return;
|
|
RecordEraseSlow(info_);
|
|
}
|
|
|
|
friend inline void swap(HashtablezInfoHandle& lhs,
|
|
HashtablezInfoHandle& rhs) {
|
|
std::swap(lhs.info_, rhs.info_);
|
|
}
|
|
|
|
private:
|
|
friend class HashtablezInfoHandlePeer;
|
|
HashtablezInfo* info_;
|
|
};
|
|
|
|
#if ABSL_PER_THREAD_TLS == 1
|
|
extern ABSL_PER_THREAD_TLS_KEYWORD int64_t global_next_sample;
|
|
#endif // ABSL_PER_THREAD_TLS
|
|
|
|
// Returns an RAII sampling handle that manages registration and unregistation
|
|
// with the global sampler.
|
|
inline HashtablezInfoHandle Sample() {
|
|
#if ABSL_PER_THREAD_TLS == 0
|
|
static auto* mu = new absl::Mutex;
|
|
static int64_t global_next_sample = 0;
|
|
absl::MutexLock l(mu);
|
|
#endif // !ABSL_HAVE_THREAD_LOCAL
|
|
|
|
if (ABSL_PREDICT_TRUE(--global_next_sample > 0)) {
|
|
return HashtablezInfoHandle(nullptr);
|
|
}
|
|
return HashtablezInfoHandle(SampleSlow(&global_next_sample));
|
|
}
|
|
|
|
// Holds samples and their associated stack traces with a soft limit of
|
|
// `SetHashtablezMaxSamples()`.
|
|
//
|
|
// Thread safe.
|
|
class HashtablezSampler {
|
|
public:
|
|
// Returns a global Sampler.
|
|
static HashtablezSampler& Global();
|
|
|
|
HashtablezSampler();
|
|
~HashtablezSampler();
|
|
|
|
// Registers for sampling. Returns an opaque registration info.
|
|
HashtablezInfo* Register();
|
|
|
|
// Unregisters the sample.
|
|
void Unregister(HashtablezInfo* sample);
|
|
|
|
// The dispose callback will be called on all samples the moment they are
|
|
// being unregistered. Only affects samples that are unregistered after the
|
|
// callback has been set.
|
|
// Returns the previous callback.
|
|
using DisposeCallback = void (*)(const HashtablezInfo&);
|
|
DisposeCallback SetDisposeCallback(DisposeCallback f);
|
|
|
|
// Iterates over all the registered `StackInfo`s. Returning the number of
|
|
// samples that have been dropped.
|
|
int64_t Iterate(const std::function<void(const HashtablezInfo& stack)>& f);
|
|
|
|
private:
|
|
void PushNew(HashtablezInfo* sample);
|
|
void PushDead(HashtablezInfo* sample);
|
|
HashtablezInfo* PopDead();
|
|
|
|
std::atomic<size_t> dropped_samples_;
|
|
std::atomic<size_t> size_estimate_;
|
|
|
|
// Intrusive lock free linked lists for tracking samples.
|
|
//
|
|
// `all_` records all samples (they are never removed from this list) and is
|
|
// terminated with a `nullptr`.
|
|
//
|
|
// `graveyard_.dead` is a circular linked list. When it is empty,
|
|
// `graveyard_.dead == &graveyard`. The list is circular so that
|
|
// every item on it (even the last) has a non-null dead pointer. This allows
|
|
// `Iterate` to determine if a given sample is live or dead using only
|
|
// information on the sample itself.
|
|
//
|
|
// For example, nodes [A, B, C, D, E] with [A, C, E] alive and [B, D] dead
|
|
// looks like this (G is the Graveyard):
|
|
//
|
|
// +---+ +---+ +---+ +---+ +---+
|
|
// all -->| A |--->| B |--->| C |--->| D |--->| E |
|
|
// | | | | | | | | | |
|
|
// +---+ | | +->| |-+ | | +->| |-+ | |
|
|
// | G | +---+ | +---+ | +---+ | +---+ | +---+
|
|
// | | | | | |
|
|
// | | --------+ +--------+ |
|
|
// +---+ |
|
|
// ^ |
|
|
// +--------------------------------------+
|
|
//
|
|
std::atomic<HashtablezInfo*> all_;
|
|
HashtablezInfo graveyard_;
|
|
|
|
std::atomic<DisposeCallback> dispose_;
|
|
};
|
|
|
|
// Enables or disables sampling for Swiss tables.
|
|
void SetHashtablezEnabled(bool enabled);
|
|
|
|
// Sets the rate at which Swiss tables will be sampled.
|
|
void SetHashtablezSampleParameter(int32_t rate);
|
|
|
|
// Sets a soft max for the number of samples that will be kept.
|
|
void SetHashtablezMaxSamples(int32_t max);
|
|
|
|
// Configuration override.
|
|
// This allows process-wide sampling without depending on order of
|
|
// initialization of static storage duration objects.
|
|
// The definition of this constant is weak, which allows us to inject a
|
|
// different value for it at link time.
|
|
extern "C" const bool kAbslContainerInternalSampleEverything;
|
|
|
|
} // namespace container_internal
|
|
} // namespace absl
|
|
|
|
#endif // ABSL_CONTAINER_INTERNAL_HASHTABLEZ_SAMPLER_H_
|