12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310 |
- //===- llvm/ADT/DenseMap.h - Dense probed hash table ------------*- C++ -*-===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- //
- // This file defines the DenseMap class.
- //
- //===----------------------------------------------------------------------===//
- // Taken from clang-1100.247.11.10.9
- #ifndef LLVM_ADT_DENSEMAP_H
- #define LLVM_ADT_DENSEMAP_H
- #include "llvm-type_traits.h"
- #include "llvm-MathExtras.h"
- #include "llvm-AlignOf.h"
- #include "llvm-DenseMapInfo.h"
- #include <algorithm>
- #include <cassert>
- #include <cstddef>
- #include <cstring>
- #include <iterator>
- #include <new>
- #include <type_traits>
- #include <utility>
- #include <TargetConditionals.h>
- #include "objc-private.h"
- #define MIN_BUCKETS 4
- #define MIN_COMPACT 1024
- #define LLVM_UNLIKELY slowpath
- #define LLVM_LIKELY fastpath
- namespace objc {
- namespace detail {
- // We extend a pair to allow users to override the bucket type with their own
- // implementation without requiring two members.
- template <typename KeyT, typename ValueT>
- struct DenseMapPair : public std::pair<KeyT, ValueT> {
- // FIXME: Switch to inheriting constructors when we drop support for older
- // clang versions.
- // NOTE: This default constructor is declared with '{}' rather than
- // '= default' to work around a separate bug in clang-3.8. This can
- // also go when we switch to inheriting constructors.
- DenseMapPair() {}
- DenseMapPair(const KeyT &Key, const ValueT &Value)
- : std::pair<KeyT, ValueT>(Key, Value) {}
- DenseMapPair(KeyT &&Key, ValueT &&Value)
- : std::pair<KeyT, ValueT>(std::move(Key), std::move(Value)) {}
- template <typename AltKeyT, typename AltValueT>
- DenseMapPair(AltKeyT &&AltKey, AltValueT &&AltValue,
- typename std::enable_if<
- std::is_convertible<AltKeyT, KeyT>::value &&
- std::is_convertible<AltValueT, ValueT>::value>::type * = 0)
- : std::pair<KeyT, ValueT>(std::forward<AltKeyT>(AltKey),
- std::forward<AltValueT>(AltValue)) {}
- template <typename AltPairT>
- DenseMapPair(AltPairT &&AltPair,
- typename std::enable_if<std::is_convertible<
- AltPairT, std::pair<KeyT, ValueT>>::value>::type * = 0)
- : std::pair<KeyT, ValueT>(std::forward<AltPairT>(AltPair)) {}
- KeyT &getFirst() { return std::pair<KeyT, ValueT>::first; }
- const KeyT &getFirst() const { return std::pair<KeyT, ValueT>::first; }
- ValueT &getSecond() { return std::pair<KeyT, ValueT>::second; }
- const ValueT &getSecond() const { return std::pair<KeyT, ValueT>::second; }
- };
- } // end namespace detail
- template <
- typename KeyT, typename ValueT,
- typename ValueInfoT = DenseMapValueInfo<ValueT>,
- typename KeyInfoT = DenseMapInfo<KeyT>,
- typename Bucket = detail::DenseMapPair<KeyT, ValueT>,
- bool IsConst = false>
- class DenseMapIterator;
- // ValueInfoT is used by the refcount table.
- // A key/value pair with value==0 is not required to be stored
- // in the refcount table; it could correctly be erased instead.
- // For performance, we do keep zero values in the table when the
- // true refcount decreases to 1: this makes any future retain faster.
- // For memory size, we allow rehashes and table insertions to
- // remove a zero value as if it were a tombstone.
- template <typename DerivedT, typename KeyT, typename ValueT,
- typename ValueInfoT, typename KeyInfoT, typename BucketT>
- class DenseMapBase {
- template <typename T>
- using const_arg_type_t = typename const_pointer_or_const_ref<T>::type;
- public:
- using size_type = unsigned;
- using key_type = KeyT;
- using mapped_type = ValueT;
- using value_type = BucketT;
- using iterator = DenseMapIterator<KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT>;
- using const_iterator =
- DenseMapIterator<KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT, true>;
- inline iterator begin() {
- // When the map is empty, avoid the overhead of advancing/retreating past
- // empty buckets.
- if (empty())
- return end();
- return makeIterator(getBuckets(), getBucketsEnd());
- }
- inline iterator end() {
- return makeIterator(getBucketsEnd(), getBucketsEnd(), true);
- }
- inline const_iterator begin() const {
- if (empty())
- return end();
- return makeConstIterator(getBuckets(), getBucketsEnd());
- }
- inline const_iterator end() const {
- return makeConstIterator(getBucketsEnd(), getBucketsEnd(), true);
- }
- bool empty() const {
- return getNumEntries() == 0;
- }
- unsigned size() const { return getNumEntries(); }
- /// Grow the densemap so that it can contain at least \p NumEntries items
- /// before resizing again.
- void reserve(size_type NumEntries) {
- auto NumBuckets = getMinBucketToReserveForEntries(NumEntries);
- if (NumBuckets > getNumBuckets())
- grow(NumBuckets);
- }
- void clear() {
- if (getNumEntries() == 0 && getNumTombstones() == 0) return;
- // If the capacity of the array is huge, and the # elements used is small,
- // shrink the array.
- if (getNumEntries() * 4 < getNumBuckets() && getNumBuckets() > MIN_BUCKETS) {
- shrink_and_clear();
- return;
- }
- const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey();
- if (is_trivially_copyable<KeyT>::value &&
- is_trivially_copyable<ValueT>::value) {
- // Use a simpler loop when these are trivial types.
- for (BucketT *P = getBuckets(), *E = getBucketsEnd(); P != E; ++P)
- P->getFirst() = EmptyKey;
- } else {
- unsigned NumEntries = getNumEntries();
- for (BucketT *P = getBuckets(), *E = getBucketsEnd(); P != E; ++P) {
- if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) {
- if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) {
- P->getSecond().~ValueT();
- --NumEntries;
- }
- P->getFirst() = EmptyKey;
- }
- }
- ASSERT(NumEntries == 0 && "Node count imbalance!");
- }
- setNumEntries(0);
- setNumTombstones(0);
- }
- /// Return 1 if the specified key is in the map, 0 otherwise.
- size_type count(const_arg_type_t<KeyT> Val) const {
- const BucketT *TheBucket;
- return LookupBucketFor(Val, TheBucket) ? 1 : 0;
- }
- iterator find(const_arg_type_t<KeyT> Val) {
- BucketT *TheBucket;
- if (LookupBucketFor(Val, TheBucket))
- return makeIterator(TheBucket, getBucketsEnd(), true);
- return end();
- }
- const_iterator find(const_arg_type_t<KeyT> Val) const {
- const BucketT *TheBucket;
- if (LookupBucketFor(Val, TheBucket))
- return makeConstIterator(TheBucket, getBucketsEnd(), true);
- return end();
- }
- /// Alternate version of find() which allows a different, and possibly
- /// less expensive, key type.
- /// The DenseMapInfo is responsible for supplying methods
- /// getHashValue(LookupKeyT) and isEqual(LookupKeyT, KeyT) for each key
- /// type used.
- template<class LookupKeyT>
- iterator find_as(const LookupKeyT &Val) {
- BucketT *TheBucket;
- if (LookupBucketFor(Val, TheBucket))
- return makeIterator(TheBucket, getBucketsEnd(), true);
- return end();
- }
- template<class LookupKeyT>
- const_iterator find_as(const LookupKeyT &Val) const {
- const BucketT *TheBucket;
- if (LookupBucketFor(Val, TheBucket))
- return makeConstIterator(TheBucket, getBucketsEnd(), true);
- return end();
- }
- /// lookup - Return the entry for the specified key, or a default
- /// constructed value if no such entry exists.
- ValueT lookup(const_arg_type_t<KeyT> Val) const {
- const BucketT *TheBucket;
- if (LookupBucketFor(Val, TheBucket))
- return TheBucket->getSecond();
- return ValueT();
- }
- // Inserts key,value pair into the map if the key isn't already in the map.
- // If the key is already in the map, it returns false and doesn't update the
- // value.
- std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
- return try_emplace(KV.first, KV.second);
- }
- // Inserts key,value pair into the map if the key isn't already in the map.
- // If the key is already in the map, it returns false and doesn't update the
- // value.
- std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) {
- return try_emplace(std::move(KV.first), std::move(KV.second));
- }
- // Inserts key,value pair into the map if the key isn't already in the map.
- // The value is constructed in-place if the key is not in the map, otherwise
- // it is not moved.
- template <typename... Ts>
- std::pair<iterator, bool> try_emplace(KeyT &&Key, Ts &&... Args) {
- BucketT *TheBucket;
- if (LookupBucketFor(Key, TheBucket))
- return std::make_pair(
- makeIterator(TheBucket, getBucketsEnd(), true),
- false); // Already in map.
- // Otherwise, insert the new element.
- TheBucket =
- InsertIntoBucket(TheBucket, std::move(Key), std::forward<Ts>(Args)...);
- return std::make_pair(
- makeIterator(TheBucket, getBucketsEnd(), true),
- true);
- }
- // Inserts key,value pair into the map if the key isn't already in the map.
- // The value is constructed in-place if the key is not in the map, otherwise
- // it is not moved.
- template <typename... Ts>
- std::pair<iterator, bool> try_emplace(const KeyT &Key, Ts &&... Args) {
- BucketT *TheBucket;
- if (LookupBucketFor(Key, TheBucket))
- return std::make_pair(
- makeIterator(TheBucket, getBucketsEnd(), true),
- false); // Already in map.
- // Otherwise, insert the new element.
- TheBucket = InsertIntoBucket(TheBucket, Key, std::forward<Ts>(Args)...);
- return std::make_pair(
- makeIterator(TheBucket, getBucketsEnd(), true),
- true);
- }
- /// Alternate version of insert() which allows a different, and possibly
- /// less expensive, key type.
- /// The DenseMapInfo is responsible for supplying methods
- /// getHashValue(LookupKeyT) and isEqual(LookupKeyT, KeyT) for each key
- /// type used.
- template <typename LookupKeyT>
- std::pair<iterator, bool> insert_as(std::pair<KeyT, ValueT> &&KV,
- const LookupKeyT &Val) {
- BucketT *TheBucket;
- if (LookupBucketFor(Val, TheBucket))
- return std::make_pair(
- makeIterator(TheBucket, getBucketsEnd(), *this, true),
- false); // Already in map.
- // Otherwise, insert the new element.
- TheBucket = InsertIntoBucketWithLookup(TheBucket, std::move(KV.first),
- std::move(KV.second), Val);
- return std::make_pair(
- makeIterator(TheBucket, getBucketsEnd(), *this, true),
- true);
- }
- /// insert - Range insertion of pairs.
- template<typename InputIt>
- void insert(InputIt I, InputIt E) {
- for (; I != E; ++I)
- insert(*I);
- }
- // Clear if empty.
- // Shrink if at least 15/16 empty and larger than MIN_COMPACT.
- void compact() {
- if (getNumEntries() == 0) {
- shrink_and_clear();
- }
- else if (getNumBuckets() / 16 > getNumEntries() &&
- getNumBuckets() > MIN_COMPACT)
- {
- grow(getNumEntries() * 2);
- }
- }
- bool erase(const KeyT &Val) {
- BucketT *TheBucket;
- if (!LookupBucketFor(Val, TheBucket))
- return false; // not in map.
- TheBucket->getSecond().~ValueT();
- TheBucket->getFirst() = getTombstoneKey();
- decrementNumEntries();
- incrementNumTombstones();
- compact();
- return true;
- }
- void erase(iterator I) {
- BucketT *TheBucket = &*I;
- TheBucket->getSecond().~ValueT();
- TheBucket->getFirst() = getTombstoneKey();
- decrementNumEntries();
- incrementNumTombstones();
- compact();
- }
- value_type& FindAndConstruct(const KeyT &Key) {
- BucketT *TheBucket;
- if (LookupBucketFor(Key, TheBucket))
- return *TheBucket;
- return *InsertIntoBucket(TheBucket, Key);
- }
- ValueT &operator[](const KeyT &Key) {
- return FindAndConstruct(Key).second;
- }
- value_type& FindAndConstruct(KeyT &&Key) {
- BucketT *TheBucket;
- if (LookupBucketFor(Key, TheBucket))
- return *TheBucket;
- return *InsertIntoBucket(TheBucket, std::move(Key));
- }
- ValueT &operator[](KeyT &&Key) {
- return FindAndConstruct(std::move(Key)).second;
- }
- /// isPointerIntoBucketsArray - Return true if the specified pointer points
- /// somewhere into the DenseMap's array of buckets (i.e. either to a key or
- /// value in the DenseMap).
- bool isPointerIntoBucketsArray(const void *Ptr) const {
- return Ptr >= getBuckets() && Ptr < getBucketsEnd();
- }
- /// getPointerIntoBucketsArray() - Return an opaque pointer into the buckets
- /// array. In conjunction with the previous method, this can be used to
- /// determine whether an insertion caused the DenseMap to reallocate.
- const void *getPointerIntoBucketsArray() const { return getBuckets(); }
- protected:
- DenseMapBase() = default;
- void destroyAll() {
- if (getNumBuckets() == 0) // Nothing to do.
- return;
- const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey();
- for (BucketT *P = getBuckets(), *E = getBucketsEnd(); P != E; ++P) {
- if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) &&
- !KeyInfoT::isEqual(P->getFirst(), TombstoneKey))
- P->getSecond().~ValueT();
- P->getFirst().~KeyT();
- }
- }
- void initEmpty() {
- setNumEntries(0);
- setNumTombstones(0);
- ASSERT((getNumBuckets() & (getNumBuckets()-1)) == 0 &&
- "# initial buckets must be a power of two!");
- const KeyT EmptyKey = getEmptyKey();
- for (BucketT *B = getBuckets(), *E = getBucketsEnd(); B != E; ++B)
- ::new (&B->getFirst()) KeyT(EmptyKey);
- }
- /// Returns the number of buckets to allocate to ensure that the DenseMap can
- /// accommodate \p NumEntries without need to grow().
- unsigned getMinBucketToReserveForEntries(unsigned NumEntries) {
- // Ensure that "NumEntries * 4 < NumBuckets * 3"
- if (NumEntries == 0)
- return 0;
- // +1 is required because of the strict equality.
- // For example if NumEntries is 48, we need to return 401.
- return NextPowerOf2(NumEntries * 4 / 3 + 1);
- }
- void moveFromOldBuckets(BucketT *OldBucketsBegin, BucketT *OldBucketsEnd) {
- initEmpty();
- // Insert all the old elements.
- const KeyT EmptyKey = getEmptyKey();
- const KeyT TombstoneKey = getTombstoneKey();
- for (BucketT *B = OldBucketsBegin, *E = OldBucketsEnd; B != E; ++B) {
- if (ValueInfoT::isPurgeable(B->getSecond())) {
- // Free the value.
- B->getSecond().~ValueT();
- } else if (!KeyInfoT::isEqual(B->getFirst(), EmptyKey) &&
- !KeyInfoT::isEqual(B->getFirst(), TombstoneKey)) {
- // Insert the key/value into the new table.
- BucketT *DestBucket;
- bool FoundVal = LookupBucketFor(B->getFirst(), DestBucket);
- (void)FoundVal; // silence warning.
- ASSERT(!FoundVal && "Key already in new map?");
- DestBucket->getFirst() = std::move(B->getFirst());
- ::new (&DestBucket->getSecond()) ValueT(std::move(B->getSecond()));
- incrementNumEntries();
- // Free the value.
- B->getSecond().~ValueT();
- }
- B->getFirst().~KeyT();
- }
- }
- template <typename OtherBaseT>
- void copyFrom(
- const DenseMapBase<OtherBaseT, KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT> &other) {
- ASSERT(&other != this);
- ASSERT(getNumBuckets() == other.getNumBuckets());
- setNumEntries(other.getNumEntries());
- setNumTombstones(other.getNumTombstones());
- if (is_trivially_copyable<KeyT>::value &&
- is_trivially_copyable<ValueT>::value)
- memcpy(reinterpret_cast<void *>(getBuckets()), other.getBuckets(),
- getNumBuckets() * sizeof(BucketT));
- else
- for (size_t i = 0; i < getNumBuckets(); ++i) {
- ::new (&getBuckets()[i].getFirst())
- KeyT(other.getBuckets()[i].getFirst());
- if (!KeyInfoT::isEqual(getBuckets()[i].getFirst(), getEmptyKey()) &&
- !KeyInfoT::isEqual(getBuckets()[i].getFirst(), getTombstoneKey()))
- ::new (&getBuckets()[i].getSecond())
- ValueT(other.getBuckets()[i].getSecond());
- }
- }
- static unsigned getHashValue(const KeyT &Val) {
- return KeyInfoT::getHashValue(Val);
- }
- template<typename LookupKeyT>
- static unsigned getHashValue(const LookupKeyT &Val) {
- return KeyInfoT::getHashValue(Val);
- }
- static const KeyT getEmptyKey() {
- static_assert(std::is_base_of<DenseMapBase, DerivedT>::value,
- "Must pass the derived type to this template!");
- return KeyInfoT::getEmptyKey();
- }
- static const KeyT getTombstoneKey() {
- return KeyInfoT::getTombstoneKey();
- }
- private:
- iterator makeIterator(BucketT *P, BucketT *E,
- bool NoAdvance=false) {
- return iterator(P, E, NoAdvance);
- }
- const_iterator makeConstIterator(const BucketT *P, const BucketT *E,
- const bool NoAdvance=false) const {
- return const_iterator(P, E, NoAdvance);
- }
- unsigned getNumEntries() const {
- return static_cast<const DerivedT *>(this)->getNumEntries();
- }
- void setNumEntries(unsigned Num) {
- static_cast<DerivedT *>(this)->setNumEntries(Num);
- }
- void incrementNumEntries() {
- setNumEntries(getNumEntries() + 1);
- }
- void decrementNumEntries() {
- setNumEntries(getNumEntries() - 1);
- }
- unsigned getNumTombstones() const {
- return static_cast<const DerivedT *>(this)->getNumTombstones();
- }
- void setNumTombstones(unsigned Num) {
- static_cast<DerivedT *>(this)->setNumTombstones(Num);
- }
- void incrementNumTombstones() {
- setNumTombstones(getNumTombstones() + 1);
- }
- void decrementNumTombstones() {
- setNumTombstones(getNumTombstones() - 1);
- }
- const BucketT *getBuckets() const {
- return static_cast<const DerivedT *>(this)->getBuckets();
- }
- BucketT *getBuckets() {
- return static_cast<DerivedT *>(this)->getBuckets();
- }
- unsigned getNumBuckets() const {
- return static_cast<const DerivedT *>(this)->getNumBuckets();
- }
- BucketT *getBucketsEnd() {
- return getBuckets() + getNumBuckets();
- }
- const BucketT *getBucketsEnd() const {
- return getBuckets() + getNumBuckets();
- }
- void grow(unsigned AtLeast) {
- static_cast<DerivedT *>(this)->grow(AtLeast);
- }
- void shrink_and_clear() {
- static_cast<DerivedT *>(this)->shrink_and_clear();
- }
- template <typename KeyArg, typename... ValueArgs>
- BucketT *InsertIntoBucket(BucketT *TheBucket, KeyArg &&Key,
- ValueArgs &&... Values) {
- TheBucket = InsertIntoBucketImpl(Key, Key, TheBucket);
- TheBucket->getFirst() = std::forward<KeyArg>(Key);
- ::new (&TheBucket->getSecond()) ValueT(std::forward<ValueArgs>(Values)...);
- return TheBucket;
- }
- template <typename LookupKeyT>
- BucketT *InsertIntoBucketWithLookup(BucketT *TheBucket, KeyT &&Key,
- ValueT &&Value, LookupKeyT &Lookup) {
- TheBucket = InsertIntoBucketImpl(Key, Lookup, TheBucket);
- TheBucket->getFirst() = std::move(Key);
- ::new (&TheBucket->getSecond()) ValueT(std::move(Value));
- return TheBucket;
- }
- template <typename LookupKeyT>
- BucketT *InsertIntoBucketImpl(const KeyT &Key, const LookupKeyT &Lookup,
- BucketT *TheBucket) {
- // If the load of the hash table is more than 3/4, or if fewer than 1/8 of
- // the buckets are empty (meaning that many are filled with tombstones),
- // grow the table.
- //
- // The later case is tricky. For example, if we had one empty bucket with
- // tons of tombstones, failing lookups (e.g. for insertion) would have to
- // probe almost the entire table until it found the empty bucket. If the
- // table completely filled with tombstones, no lookup would ever succeed,
- // causing infinite loops in lookup.
- unsigned NewNumEntries = getNumEntries() + 1;
- unsigned NumBuckets = getNumBuckets();
- if (LLVM_UNLIKELY(NewNumEntries * 4 >= NumBuckets * 3)) {
- this->grow(NumBuckets * 2);
- LookupBucketFor(Lookup, TheBucket);
- NumBuckets = getNumBuckets();
- } else if (LLVM_UNLIKELY(NumBuckets-(NewNumEntries+getNumTombstones()) <=
- NumBuckets/8)) {
- this->grow(NumBuckets);
- LookupBucketFor(Lookup, TheBucket);
- }
- ASSERT(TheBucket);
- // Only update the state after we've grown our bucket space appropriately
- // so that when growing buckets we have self-consistent entry count.
- // If we are writing over a tombstone or zero value, remember this.
- if (KeyInfoT::isEqual(TheBucket->getFirst(), getEmptyKey())) {
- // Replacing an empty bucket.
- incrementNumEntries();
- } else if (KeyInfoT::isEqual(TheBucket->getFirst(), getTombstoneKey())) {
- // Replacing a tombstone.
- incrementNumEntries();
- decrementNumTombstones();
- } else {
- // we should be purging a zero. No accounting changes.
- ASSERT(ValueInfoT::isPurgeable(TheBucket->getSecond()));
- TheBucket->getSecond().~ValueT();
- }
- return TheBucket;
- }
- __attribute__((noinline, noreturn, cold))
- void FatalCorruptHashTables(const BucketT *BucketsPtr, unsigned NumBuckets) const
- {
- _objc_fatal("Hash table corrupted. This is probably a memory error "
- "somewhere. (table at %p, buckets at %p (%zu bytes), "
- "%u buckets, %u entries, %u tombstones, "
- "data %p %p %p %p)",
- this, BucketsPtr, malloc_size(BucketsPtr),
- NumBuckets, getNumEntries(), getNumTombstones(),
- ((void**)BucketsPtr)[0], ((void**)BucketsPtr)[1],
- ((void**)BucketsPtr)[2], ((void**)BucketsPtr)[3]);
- }
- /// LookupBucketFor - Lookup the appropriate bucket for Val, returning it in
- /// FoundBucket. If the bucket contains the key and a value, this returns
- /// true, otherwise it returns a bucket with an empty marker or tombstone and
- /// returns false.
- template<typename LookupKeyT>
- bool LookupBucketFor(const LookupKeyT &Val,
- const BucketT *&FoundBucket) const {
- const BucketT *BucketsPtr = getBuckets();
- const unsigned NumBuckets = getNumBuckets();
- if (NumBuckets == 0) {
- FoundBucket = nullptr;
- return false;
- }
- // FoundTombstone - Keep track of whether we find a tombstone while probing.
- const BucketT *FoundTombstone = nullptr;
- const KeyT EmptyKey = getEmptyKey();
- const KeyT TombstoneKey = getTombstoneKey();
- assert(!KeyInfoT::isEqual(Val, EmptyKey) &&
- !KeyInfoT::isEqual(Val, TombstoneKey) &&
- "Empty/Tombstone value shouldn't be inserted into map!");
- unsigned BucketNo = getHashValue(Val) & (NumBuckets-1);
- unsigned ProbeAmt = 1;
- while (true) {
- const BucketT *ThisBucket = BucketsPtr + BucketNo;
- // Found Val's bucket? If so, return it.
- if (LLVM_LIKELY(KeyInfoT::isEqual(Val, ThisBucket->getFirst()))) {
- FoundBucket = ThisBucket;
- return true;
- }
- // If we found an empty bucket, the key doesn't exist in the set.
- // Insert it and return the default value.
- if (LLVM_LIKELY(KeyInfoT::isEqual(ThisBucket->getFirst(), EmptyKey))) {
- // If we've already seen a tombstone while probing, fill it in instead
- // of the empty bucket we eventually probed to.
- FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket;
- return false;
- }
- // If this is a tombstone, remember it. If Val ends up not in the map, we
- // prefer to return it than something that would require more probing.
- // Ditto for zero values.
- if (KeyInfoT::isEqual(ThisBucket->getFirst(), TombstoneKey) &&
- !FoundTombstone)
- FoundTombstone = ThisBucket; // Remember the first tombstone found.
- if (ValueInfoT::isPurgeable(ThisBucket->getSecond()) && !FoundTombstone)
- FoundTombstone = ThisBucket;
- // Otherwise, it's a hash collision or a tombstone, continue quadratic
- // probing.
- if (ProbeAmt > NumBuckets) {
- FatalCorruptHashTables(BucketsPtr, NumBuckets);
- }
- BucketNo += ProbeAmt++;
- BucketNo &= (NumBuckets-1);
- }
- }
- template <typename LookupKeyT>
- bool LookupBucketFor(const LookupKeyT &Val, BucketT *&FoundBucket) {
- const BucketT *ConstFoundBucket;
- bool Result = const_cast<const DenseMapBase *>(this)
- ->LookupBucketFor(Val, ConstFoundBucket);
- FoundBucket = const_cast<BucketT *>(ConstFoundBucket);
- return Result;
- }
- public:
- /// Return the approximate size (in bytes) of the actual map.
- /// This is just the raw memory used by DenseMap.
- /// If entries are pointers to objects, the size of the referenced objects
- /// are not included.
- size_t getMemorySize() const {
- return getNumBuckets() * sizeof(BucketT);
- }
- };
- /// Equality comparison for DenseMap.
- ///
- /// Iterates over elements of LHS confirming that each (key, value) pair in LHS
- /// is also in RHS, and that no additional pairs are in RHS.
- /// Equivalent to N calls to RHS.find and N value comparisons. Amortized
- /// complexity is linear, worst case is O(N^2) (if every hash collides).
- template <typename DerivedT, typename KeyT, typename ValueT,
- typename ValueInfoT, typename KeyInfoT, typename BucketT>
- bool operator==(
- const DenseMapBase<DerivedT, KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT> &LHS,
- const DenseMapBase<DerivedT, KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT> &RHS) {
- if (LHS.size() != RHS.size())
- return false;
- for (auto &KV : LHS) {
- auto I = RHS.find(KV.first);
- if (I == RHS.end() || I->second != KV.second)
- return false;
- }
- return true;
- }
- /// Inequality comparison for DenseMap.
- ///
- /// Equivalent to !(LHS == RHS). See operator== for performance notes.
- template <typename DerivedT, typename KeyT, typename ValueT,
- typename ValueInfoT, typename KeyInfoT, typename BucketT>
- bool operator!=(
- const DenseMapBase<DerivedT, KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT> &LHS,
- const DenseMapBase<DerivedT, KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT> &RHS) {
- return !(LHS == RHS);
- }
- template <typename KeyT, typename ValueT,
- typename ValueInfoT = DenseMapValueInfo<ValueT>,
- typename KeyInfoT = DenseMapInfo<KeyT>,
- typename BucketT = detail::DenseMapPair<KeyT, ValueT>>
- class DenseMap : public DenseMapBase<DenseMap<KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT>,
- KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT> {
- friend class DenseMapBase<DenseMap, KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT>;
- // Lift some types from the dependent base class into this class for
- // simplicity of referring to them.
- using BaseT = DenseMapBase<DenseMap, KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT>;
- BucketT *Buckets;
- unsigned NumEntries;
- unsigned NumTombstones;
- unsigned NumBuckets;
- public:
- /// Create a DenseMap wth an optional \p InitialReserve that guarantee that
- /// this number of elements can be inserted in the map without grow()
- explicit DenseMap(unsigned InitialReserve = 0) { init(InitialReserve); }
- DenseMap(const DenseMap &other) : BaseT() {
- init(0);
- copyFrom(other);
- }
- DenseMap(DenseMap &&other) : BaseT() {
- init(0);
- swap(other);
- }
- template<typename InputIt>
- DenseMap(const InputIt &I, const InputIt &E) {
- init(std::distance(I, E));
- this->insert(I, E);
- }
- DenseMap(std::initializer_list<typename BaseT::value_type> Vals) {
- init(Vals.size());
- this->insert(Vals.begin(), Vals.end());
- }
- ~DenseMap() {
- this->destroyAll();
- operator delete(Buckets);
- }
- void swap(DenseMap& RHS) {
- std::swap(Buckets, RHS.Buckets);
- std::swap(NumEntries, RHS.NumEntries);
- std::swap(NumTombstones, RHS.NumTombstones);
- std::swap(NumBuckets, RHS.NumBuckets);
- }
- DenseMap& operator=(const DenseMap& other) {
- if (&other != this)
- copyFrom(other);
- return *this;
- }
- DenseMap& operator=(DenseMap &&other) {
- this->destroyAll();
- operator delete(Buckets);
- init(0);
- swap(other);
- return *this;
- }
- void copyFrom(const DenseMap& other) {
- this->destroyAll();
- operator delete(Buckets);
- if (allocateBuckets(other.NumBuckets)) {
- this->BaseT::copyFrom(other);
- } else {
- NumEntries = 0;
- NumTombstones = 0;
- }
- }
- void init(unsigned InitNumEntries) {
- auto InitBuckets = BaseT::getMinBucketToReserveForEntries(InitNumEntries);
- if (allocateBuckets(InitBuckets)) {
- this->BaseT::initEmpty();
- } else {
- NumEntries = 0;
- NumTombstones = 0;
- }
- }
- void grow(unsigned AtLeast) {
- unsigned OldNumBuckets = NumBuckets;
- BucketT *OldBuckets = Buckets;
- allocateBuckets(std::max<unsigned>(MIN_BUCKETS, static_cast<unsigned>(NextPowerOf2(AtLeast-1))));
- ASSERT(Buckets);
- if (!OldBuckets) {
- this->BaseT::initEmpty();
- return;
- }
- this->moveFromOldBuckets(OldBuckets, OldBuckets+OldNumBuckets);
- // Free the old table.
- operator delete(OldBuckets);
- }
- void shrink_and_clear() {
- unsigned OldNumEntries = NumEntries;
- this->destroyAll();
- // Reduce the number of buckets.
- unsigned NewNumBuckets = 0;
- if (OldNumEntries)
- NewNumBuckets = std::max(MIN_BUCKETS, 1 << (Log2_32_Ceil(OldNumEntries) + 1));
- if (NewNumBuckets == NumBuckets) {
- this->BaseT::initEmpty();
- return;
- }
- operator delete(Buckets);
- init(NewNumBuckets);
- }
- private:
- unsigned getNumEntries() const {
- return NumEntries;
- }
- void setNumEntries(unsigned Num) {
- NumEntries = Num;
- }
- unsigned getNumTombstones() const {
- return NumTombstones;
- }
- void setNumTombstones(unsigned Num) {
- NumTombstones = Num;
- }
- BucketT *getBuckets() const {
- return Buckets;
- }
- unsigned getNumBuckets() const {
- return NumBuckets;
- }
- bool allocateBuckets(unsigned Num) {
- NumBuckets = Num;
- if (NumBuckets == 0) {
- Buckets = nullptr;
- return false;
- }
- Buckets = static_cast<BucketT*>(operator new(sizeof(BucketT) * NumBuckets));
- return true;
- }
- };
- template <typename KeyT, typename ValueT, unsigned InlineBuckets = 4,
- typename ValueInfoT = DenseMapValueInfo<ValueT>,
- typename KeyInfoT = DenseMapInfo<KeyT>,
- typename BucketT = detail::DenseMapPair<KeyT, ValueT>>
- class SmallDenseMap
- : public DenseMapBase<
- SmallDenseMap<KeyT, ValueT, InlineBuckets, ValueInfoT, KeyInfoT, BucketT>, KeyT,
- ValueT, ValueInfoT, KeyInfoT, BucketT> {
- friend class DenseMapBase<SmallDenseMap, KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT>;
- // Lift some types from the dependent base class into this class for
- // simplicity of referring to them.
- using BaseT = DenseMapBase<SmallDenseMap, KeyT, ValueT, ValueInfoT, KeyInfoT, BucketT>;
- static_assert(powerof2(InlineBuckets),
- "InlineBuckets must be a power of 2.");
- unsigned Small : 1;
- unsigned NumEntries : 31;
- unsigned NumTombstones;
- struct LargeRep {
- BucketT *Buckets;
- unsigned NumBuckets;
- };
- /// A "union" of an inline bucket array and the struct representing
- /// a large bucket. This union will be discriminated by the 'Small' bit.
- AlignedCharArrayUnion<BucketT[InlineBuckets], LargeRep> storage;
- public:
- explicit SmallDenseMap(unsigned NumInitBuckets = 0) {
- init(NumInitBuckets);
- }
- SmallDenseMap(const SmallDenseMap &other) : BaseT() {
- init(0);
- copyFrom(other);
- }
- SmallDenseMap(SmallDenseMap &&other) : BaseT() {
- init(0);
- swap(other);
- }
- template<typename InputIt>
- SmallDenseMap(const InputIt &I, const InputIt &E) {
- init(NextPowerOf2(std::distance(I, E)));
- this->insert(I, E);
- }
- ~SmallDenseMap() {
- this->destroyAll();
- deallocateBuckets();
- }
- void swap(SmallDenseMap& RHS) {
- unsigned TmpNumEntries = RHS.NumEntries;
- RHS.NumEntries = NumEntries;
- NumEntries = TmpNumEntries;
- std::swap(NumTombstones, RHS.NumTombstones);
- const KeyT EmptyKey = this->getEmptyKey();
- const KeyT TombstoneKey = this->getTombstoneKey();
- if (Small && RHS.Small) {
- // If we're swapping inline bucket arrays, we have to cope with some of
- // the tricky bits of DenseMap's storage system: the buckets are not
- // fully initialized. Thus we swap every key, but we may have
- // a one-directional move of the value.
- for (unsigned i = 0, e = InlineBuckets; i != e; ++i) {
- BucketT *LHSB = &getInlineBuckets()[i],
- *RHSB = &RHS.getInlineBuckets()[i];
- bool hasLHSValue = (!KeyInfoT::isEqual(LHSB->getFirst(), EmptyKey) &&
- !KeyInfoT::isEqual(LHSB->getFirst(), TombstoneKey));
- bool hasRHSValue = (!KeyInfoT::isEqual(RHSB->getFirst(), EmptyKey) &&
- !KeyInfoT::isEqual(RHSB->getFirst(), TombstoneKey));
- if (hasLHSValue && hasRHSValue) {
- // Swap together if we can...
- std::swap(*LHSB, *RHSB);
- continue;
- }
- // Swap separately and handle any assymetry.
- std::swap(LHSB->getFirst(), RHSB->getFirst());
- if (hasLHSValue) {
- ::new (&RHSB->getSecond()) ValueT(std::move(LHSB->getSecond()));
- LHSB->getSecond().~ValueT();
- } else if (hasRHSValue) {
- ::new (&LHSB->getSecond()) ValueT(std::move(RHSB->getSecond()));
- RHSB->getSecond().~ValueT();
- }
- }
- return;
- }
- if (!Small && !RHS.Small) {
- std::swap(getLargeRep()->Buckets, RHS.getLargeRep()->Buckets);
- std::swap(getLargeRep()->NumBuckets, RHS.getLargeRep()->NumBuckets);
- return;
- }
- SmallDenseMap &SmallSide = Small ? *this : RHS;
- SmallDenseMap &LargeSide = Small ? RHS : *this;
- // First stash the large side's rep and move the small side across.
- LargeRep TmpRep = std::move(*LargeSide.getLargeRep());
- LargeSide.getLargeRep()->~LargeRep();
- LargeSide.Small = true;
- // This is similar to the standard move-from-old-buckets, but the bucket
- // count hasn't actually rotated in this case. So we have to carefully
- // move construct the keys and values into their new locations, but there
- // is no need to re-hash things.
- for (unsigned i = 0, e = InlineBuckets; i != e; ++i) {
- BucketT *NewB = &LargeSide.getInlineBuckets()[i],
- *OldB = &SmallSide.getInlineBuckets()[i];
- ::new (&NewB->getFirst()) KeyT(std::move(OldB->getFirst()));
- OldB->getFirst().~KeyT();
- if (!KeyInfoT::isEqual(NewB->getFirst(), EmptyKey) &&
- !KeyInfoT::isEqual(NewB->getFirst(), TombstoneKey)) {
- ::new (&NewB->getSecond()) ValueT(std::move(OldB->getSecond()));
- OldB->getSecond().~ValueT();
- }
- }
- // The hard part of moving the small buckets across is done, just move
- // the TmpRep into its new home.
- SmallSide.Small = false;
- new (SmallSide.getLargeRep()) LargeRep(std::move(TmpRep));
- }
- SmallDenseMap& operator=(const SmallDenseMap& other) {
- if (&other != this)
- copyFrom(other);
- return *this;
- }
- SmallDenseMap& operator=(SmallDenseMap &&other) {
- this->destroyAll();
- deallocateBuckets();
- init(0);
- swap(other);
- return *this;
- }
- void copyFrom(const SmallDenseMap& other) {
- this->destroyAll();
- deallocateBuckets();
- Small = true;
- if (other.getNumBuckets() > InlineBuckets) {
- Small = false;
- new (getLargeRep()) LargeRep(allocateBuckets(other.getNumBuckets()));
- }
- this->BaseT::copyFrom(other);
- }
- void init(unsigned InitBuckets) {
- Small = true;
- if (InitBuckets > InlineBuckets) {
- Small = false;
- new (getLargeRep()) LargeRep(allocateBuckets(InitBuckets));
- }
- this->BaseT::initEmpty();
- }
- void grow(unsigned AtLeast) {
- if (AtLeast >= InlineBuckets)
- AtLeast = std::max<unsigned>(MIN_BUCKETS, NextPowerOf2(AtLeast));
- if (Small) {
- if (AtLeast < InlineBuckets)
- return; // Nothing to do.
- // First move the inline buckets into a temporary storage.
- AlignedCharArrayUnion<BucketT[InlineBuckets]> TmpStorage;
- BucketT *TmpBegin = reinterpret_cast<BucketT *>(TmpStorage.buffer);
- BucketT *TmpEnd = TmpBegin;
- // Loop over the buckets, moving non-empty, non-tombstones into the
- // temporary storage. Have the loop move the TmpEnd forward as it goes.
- const KeyT EmptyKey = this->getEmptyKey();
- const KeyT TombstoneKey = this->getTombstoneKey();
- for (BucketT *P = getBuckets(), *E = P + InlineBuckets; P != E; ++P) {
- if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) &&
- !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) {
- assert(size_t(TmpEnd - TmpBegin) < InlineBuckets &&
- "Too many inline buckets!");
- ::new (&TmpEnd->getFirst()) KeyT(std::move(P->getFirst()));
- ::new (&TmpEnd->getSecond()) ValueT(std::move(P->getSecond()));
- ++TmpEnd;
- P->getSecond().~ValueT();
- }
- P->getFirst().~KeyT();
- }
- // Now make this map use the large rep, and move all the entries back
- // into it.
- Small = false;
- new (getLargeRep()) LargeRep(allocateBuckets(AtLeast));
- this->moveFromOldBuckets(TmpBegin, TmpEnd);
- return;
- }
- LargeRep OldRep = std::move(*getLargeRep());
- getLargeRep()->~LargeRep();
- if (AtLeast <= InlineBuckets) {
- Small = true;
- } else {
- new (getLargeRep()) LargeRep(allocateBuckets(AtLeast));
- }
- this->moveFromOldBuckets(OldRep.Buckets, OldRep.Buckets+OldRep.NumBuckets);
- // Free the old table.
- operator delete(OldRep.Buckets);
- }
- void shrink_and_clear() {
- unsigned OldSize = this->size();
- this->destroyAll();
- // Reduce the number of buckets.
- unsigned NewNumBuckets = 0;
- if (OldSize) {
- NewNumBuckets = 1 << (Log2_32_Ceil(OldSize) + 1);
- if (NewNumBuckets > InlineBuckets && NewNumBuckets < MIN_BUCKETS)
- NewNumBuckets = MIN_BUCKETS;
- }
- if ((Small && NewNumBuckets <= InlineBuckets) ||
- (!Small && NewNumBuckets == getLargeRep()->NumBuckets)) {
- this->BaseT::initEmpty();
- return;
- }
- deallocateBuckets();
- init(NewNumBuckets);
- }
- private:
- unsigned getNumEntries() const {
- return NumEntries;
- }
- void setNumEntries(unsigned Num) {
- // NumEntries is hardcoded to be 31 bits wide.
- ASSERT(Num < (1U << 31) && "Cannot support more than 1<<31 entries");
- NumEntries = Num;
- }
- unsigned getNumTombstones() const {
- return NumTombstones;
- }
- void setNumTombstones(unsigned Num) {
- NumTombstones = Num;
- }
- const BucketT *getInlineBuckets() const {
- ASSERT(Small);
- // Note that this cast does not violate aliasing rules as we assert that
- // the memory's dynamic type is the small, inline bucket buffer, and the
- // 'storage.buffer' static type is 'char *'.
- return reinterpret_cast<const BucketT *>(storage.buffer);
- }
- BucketT *getInlineBuckets() {
- return const_cast<BucketT *>(
- const_cast<const SmallDenseMap *>(this)->getInlineBuckets());
- }
- const LargeRep *getLargeRep() const {
- ASSERT(!Small);
- // Note, same rule about aliasing as with getInlineBuckets.
- return reinterpret_cast<const LargeRep *>(storage.buffer);
- }
- LargeRep *getLargeRep() {
- return const_cast<LargeRep *>(
- const_cast<const SmallDenseMap *>(this)->getLargeRep());
- }
- const BucketT *getBuckets() const {
- return Small ? getInlineBuckets() : getLargeRep()->Buckets;
- }
- BucketT *getBuckets() {
- return const_cast<BucketT *>(
- const_cast<const SmallDenseMap *>(this)->getBuckets());
- }
- unsigned getNumBuckets() const {
- return Small ? InlineBuckets : getLargeRep()->NumBuckets;
- }
- void deallocateBuckets() {
- if (Small)
- return;
- operator delete(getLargeRep()->Buckets);
- getLargeRep()->~LargeRep();
- }
- LargeRep allocateBuckets(unsigned Num) {
- ASSERT(Num > InlineBuckets && "Must allocate more buckets than are inline");
- LargeRep Rep = {
- static_cast<BucketT*>(operator new(sizeof(BucketT) * Num)), Num
- };
- return Rep;
- }
- };
- template <typename KeyT, typename ValueT, typename ValueInfoT,
- typename KeyInfoT, typename Bucket, bool IsConst>
- class DenseMapIterator {
- friend class DenseMapIterator<KeyT, ValueT, ValueInfoT, KeyInfoT, Bucket, true>;
- friend class DenseMapIterator<KeyT, ValueT, ValueInfoT, KeyInfoT, Bucket, false>;
- using ConstIterator = DenseMapIterator<KeyT, ValueT, ValueInfoT, KeyInfoT, Bucket, true>;
- public:
- using difference_type = ptrdiff_t;
- using value_type =
- typename std::conditional<IsConst, const Bucket, Bucket>::type;
- using pointer = value_type *;
- using reference = value_type &;
- using iterator_category = std::forward_iterator_tag;
- private:
- pointer Ptr = nullptr;
- pointer End = nullptr;
- public:
- DenseMapIterator() = default;
- DenseMapIterator(pointer Pos, pointer E,
- bool NoAdvance = false)
- : Ptr(Pos), End(E) {
- if (NoAdvance) return;
- AdvancePastEmptyBuckets();
- }
- // Converting ctor from non-const iterators to const iterators. SFINAE'd out
- // for const iterator destinations so it doesn't end up as a user defined copy
- // constructor.
- template <bool IsConstSrc,
- typename = typename std::enable_if<!IsConstSrc && IsConst>::type>
- DenseMapIterator(
- const DenseMapIterator<KeyT, ValueT, ValueInfoT, KeyInfoT, Bucket, IsConstSrc> &I)
- : Ptr(I.Ptr), End(I.End) {}
- reference operator*() const {
- return *Ptr;
- }
- pointer operator->() const {
- return Ptr;
- }
- bool operator==(const ConstIterator &RHS) const {
- return Ptr == RHS.Ptr;
- }
- bool operator!=(const ConstIterator &RHS) const {
- return Ptr != RHS.Ptr;
- }
- inline DenseMapIterator& operator++() { // Preincrement
- ++Ptr;
- AdvancePastEmptyBuckets();
- return *this;
- }
- DenseMapIterator operator++(int) { // Postincrement
- DenseMapIterator tmp = *this; ++*this; return tmp;
- }
- private:
- void AdvancePastEmptyBuckets() {
- ASSERT(Ptr <= End);
- const KeyT Empty = KeyInfoT::getEmptyKey();
- const KeyT Tombstone = KeyInfoT::getTombstoneKey();
- while (Ptr != End && (KeyInfoT::isEqual(Ptr->getFirst(), Empty) ||
- KeyInfoT::isEqual(Ptr->getFirst(), Tombstone)))
- ++Ptr;
- }
- void RetreatPastEmptyBuckets() {
- ASSERT(Ptr >= End);
- const KeyT Empty = KeyInfoT::getEmptyKey();
- const KeyT Tombstone = KeyInfoT::getTombstoneKey();
- while (Ptr != End && (KeyInfoT::isEqual(Ptr[-1].getFirst(), Empty) ||
- KeyInfoT::isEqual(Ptr[-1].getFirst(), Tombstone)))
- --Ptr;
- }
- };
- template <typename KeyT, typename ValueT, typename KeyInfoT>
- inline size_t capacity_in_bytes(const DenseMap<KeyT, ValueT, KeyInfoT> &X) {
- return X.getMemorySize();
- }
- } // end namespace objc
- #endif // LLVM_ADT_DENSEMAP_H
|