// Copyright 2022 Google LLC // // 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. #ifndef FUZZTEST_FUZZTEST_INTERNAL_TABLE_OF_RECENT_COMPARES_H_ #define FUZZTEST_FUZZTEST_INTERNAL_TABLE_OF_RECENT_COMPARES_H_ #include <algorithm> #include <array> #include <cstddef> #include <cstdint> #include <iterator> #include <limits> #include <optional> #include <vector> #include "absl/container/flat_hash_set.h" #include "absl/random/bit_gen_ref.h" #include "absl/random/distributions.h" #include "./fuzztest/internal/type_support.h" namespace fuzztest::internal { template <typename ContainerT> struct DictionaryEntry { … }; template <typename ContainerT> bool operator==(const DictionaryEntry<ContainerT>& lhs, const DictionaryEntry<ContainerT>& rhs) { … } template <typename H, typename ContainerT> H AbslHashValue(H h, const DictionaryEntry<ContainerT>& m) { … } inline size_t ChooseOffset(size_t size, absl::BitGenRef prng) { … } inline bool RandomBool(absl::BitGenRef prng) { … } // A fixed-sized table to store integer comparison arguments. // Note that this is lossy as we randomly hash elements into a fixed // table, without handling collisions. template <class T> class TableOfRecentCompares { … }; // A fixed-sized table to store buffer comparison arguments. // I.e., arguments of memcmp, strcmp, strncmp, etc. Note that this // is lossy as we randomly hash elements into a fixed table, without handling // collisions. The elements may also be corrupted when it's accessed // concurrently, but the only effect is to make this table lossy and we // can accept that. Making this atomic will make the sancov part too heavy // and not worth it. class TableOfRecentlyComparedBuffers { … }; class TablesOfRecentCompares { … }; template <typename T> class IntegerDictionary { … }; template <typename ContainerT> class ContainerDictionary { … }; } // namespace fuzztest::internal #endif // FUZZTEST_FUZZTEST_INTERNAL_TABLE_OF_RECENT_COMPARES_H_