mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Recommit 211309 (StringMap::insert), reverted in 211328 due to issues with private, but non-deleted, move members.
Certain versions of GCC (~4.7) couldn't handle the SFINAE on access control, but with "= delete" (hidden behind a macro for portability) this issue is worked around/addressed. Patch by Agustín Bergé git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211525 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
140c6ae970
commit
9dd6fee485
@ -64,7 +64,7 @@ protected:
|
|||||||
}
|
}
|
||||||
|
|
||||||
StringMapImpl(unsigned InitSize, unsigned ItemSize);
|
StringMapImpl(unsigned InitSize, unsigned ItemSize);
|
||||||
void RehashTable();
|
unsigned RehashTable(unsigned BucketNo = 0);
|
||||||
|
|
||||||
/// LookupBucketFor - Look up the bucket that the specified string should end
|
/// LookupBucketFor - Look up the bucket that the specified string should end
|
||||||
/// up in. If it already exists as a key in the map, the Item pointer for the
|
/// up in. If it already exists as a key in the map, the Item pointer for the
|
||||||
@ -323,6 +323,28 @@ public:
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// insert - Inserts the specified key/value pair into the map if the key
|
||||||
|
/// isn't already in the map. The bool component of the returned pair is true
|
||||||
|
/// if and only if the insertion takes place, and the iterator component of
|
||||||
|
/// the pair points to the element with key equivalent to the key of the pair.
|
||||||
|
std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) {
|
||||||
|
unsigned BucketNo = LookupBucketFor(KV.first);
|
||||||
|
StringMapEntryBase *&Bucket = TheTable[BucketNo];
|
||||||
|
if (Bucket && Bucket != getTombstoneVal())
|
||||||
|
return std::make_pair(iterator(TheTable + BucketNo, false),
|
||||||
|
false); // Already exists in map.
|
||||||
|
|
||||||
|
if (Bucket == getTombstoneVal())
|
||||||
|
--NumTombstones;
|
||||||
|
Bucket =
|
||||||
|
MapEntryTy::Create(KV.first, Allocator, std::move(KV.second));
|
||||||
|
++NumItems;
|
||||||
|
assert(NumItems + NumTombstones <= NumBuckets);
|
||||||
|
|
||||||
|
BucketNo = RehashTable(BucketNo);
|
||||||
|
return std::make_pair(iterator(TheTable + BucketNo, false), true);
|
||||||
|
}
|
||||||
|
|
||||||
// clear - Empties out the StringMap
|
// clear - Empties out the StringMap
|
||||||
void clear() {
|
void clear() {
|
||||||
if (empty()) return;
|
if (empty()) return;
|
||||||
@ -346,24 +368,7 @@ public:
|
|||||||
/// return.
|
/// return.
|
||||||
template <typename InitTy>
|
template <typename InitTy>
|
||||||
MapEntryTy &GetOrCreateValue(StringRef Key, InitTy Val) {
|
MapEntryTy &GetOrCreateValue(StringRef Key, InitTy Val) {
|
||||||
unsigned BucketNo = LookupBucketFor(Key);
|
return *insert(std::make_pair(Key, std::move(Val))).first;
|
||||||
StringMapEntryBase *&Bucket = TheTable[BucketNo];
|
|
||||||
if (Bucket && Bucket != getTombstoneVal())
|
|
||||||
return *static_cast<MapEntryTy*>(Bucket);
|
|
||||||
|
|
||||||
MapEntryTy *NewItem = MapEntryTy::Create(Key, Allocator, std::move(Val));
|
|
||||||
|
|
||||||
if (Bucket == getTombstoneVal())
|
|
||||||
--NumTombstones;
|
|
||||||
++NumItems;
|
|
||||||
assert(NumItems + NumTombstones <= NumBuckets);
|
|
||||||
|
|
||||||
// Fill in the bucket for the hash table. The FullHashValue was already
|
|
||||||
// filled in by LookupBucketFor.
|
|
||||||
Bucket = NewItem;
|
|
||||||
|
|
||||||
RehashTable();
|
|
||||||
return *NewItem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
MapEntryTy &GetOrCreateValue(StringRef Key) {
|
MapEntryTy &GetOrCreateValue(StringRef Key) {
|
||||||
|
@ -181,7 +181,7 @@ StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) {
|
|||||||
|
|
||||||
/// RehashTable - Grow the table, redistributing values into the buckets with
|
/// RehashTable - Grow the table, redistributing values into the buckets with
|
||||||
/// the appropriate mod-of-hashtable-size.
|
/// the appropriate mod-of-hashtable-size.
|
||||||
void StringMapImpl::RehashTable() {
|
unsigned StringMapImpl::RehashTable(unsigned BucketNo) {
|
||||||
unsigned NewSize;
|
unsigned NewSize;
|
||||||
unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1);
|
unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1);
|
||||||
|
|
||||||
@ -193,9 +193,10 @@ void StringMapImpl::RehashTable() {
|
|||||||
} else if (NumBuckets-(NumItems+NumTombstones) <= NumBuckets/8) {
|
} else if (NumBuckets-(NumItems+NumTombstones) <= NumBuckets/8) {
|
||||||
NewSize = NumBuckets;
|
NewSize = NumBuckets;
|
||||||
} else {
|
} else {
|
||||||
return;
|
return BucketNo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned NewBucketNo = BucketNo;
|
||||||
// Allocate one extra bucket which will always be non-empty. This allows the
|
// Allocate one extra bucket which will always be non-empty. This allows the
|
||||||
// iterators to stop at end.
|
// iterators to stop at end.
|
||||||
StringMapEntryBase **NewTableArray =
|
StringMapEntryBase **NewTableArray =
|
||||||
@ -215,6 +216,8 @@ void StringMapImpl::RehashTable() {
|
|||||||
if (!NewTableArray[NewBucket]) {
|
if (!NewTableArray[NewBucket]) {
|
||||||
NewTableArray[FullHash & (NewSize-1)] = Bucket;
|
NewTableArray[FullHash & (NewSize-1)] = Bucket;
|
||||||
NewHashArray[FullHash & (NewSize-1)] = FullHash;
|
NewHashArray[FullHash & (NewSize-1)] = FullHash;
|
||||||
|
if (I == BucketNo)
|
||||||
|
NewBucketNo = NewBucket;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -227,6 +230,8 @@ void StringMapImpl::RehashTable() {
|
|||||||
// Finally found a slot. Fill it in.
|
// Finally found a slot. Fill it in.
|
||||||
NewTableArray[NewBucket] = Bucket;
|
NewTableArray[NewBucket] = Bucket;
|
||||||
NewHashArray[NewBucket] = FullHash;
|
NewHashArray[NewBucket] = FullHash;
|
||||||
|
if (I == BucketNo)
|
||||||
|
NewBucketNo = NewBucket;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -235,4 +240,5 @@ void StringMapImpl::RehashTable() {
|
|||||||
TheTable = NewTableArray;
|
TheTable = NewTableArray;
|
||||||
NumBuckets = NewSize;
|
NumBuckets = NewSize;
|
||||||
NumTombstones = 0;
|
NumTombstones = 0;
|
||||||
|
return NewBucketNo;
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include "gtest/gtest.h"
|
#include "gtest/gtest.h"
|
||||||
#include "llvm/ADT/StringMap.h"
|
#include "llvm/ADT/StringMap.h"
|
||||||
#include "llvm/Support/DataTypes.h"
|
#include "llvm/Support/DataTypes.h"
|
||||||
|
#include <tuple>
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
@ -203,6 +204,43 @@ TEST_F(StringMapTest, InsertTest) {
|
|||||||
assertSingleItemMap();
|
assertSingleItemMap();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Test insert(pair<K, V>) method
|
||||||
|
TEST_F(StringMapTest, InsertPairTest) {
|
||||||
|
bool Inserted;
|
||||||
|
StringMap<uint32_t>::iterator NewIt;
|
||||||
|
std::tie(NewIt, Inserted) =
|
||||||
|
testMap.insert(std::make_pair(testKeyFirst, testValue));
|
||||||
|
EXPECT_EQ(1u, testMap.size());
|
||||||
|
EXPECT_EQ(testValue, testMap[testKeyFirst]);
|
||||||
|
EXPECT_EQ(testKeyFirst, NewIt->first());
|
||||||
|
EXPECT_EQ(testValue, NewIt->second);
|
||||||
|
EXPECT_TRUE(Inserted);
|
||||||
|
|
||||||
|
StringMap<uint32_t>::iterator ExistingIt;
|
||||||
|
std::tie(ExistingIt, Inserted) =
|
||||||
|
testMap.insert(std::make_pair(testKeyFirst, testValue + 1));
|
||||||
|
EXPECT_EQ(1u, testMap.size());
|
||||||
|
EXPECT_EQ(testValue, testMap[testKeyFirst]);
|
||||||
|
EXPECT_FALSE(Inserted);
|
||||||
|
EXPECT_EQ(NewIt, ExistingIt);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test insert(pair<K, V>) method when rehashing occurs
|
||||||
|
TEST_F(StringMapTest, InsertRehashingPairTest) {
|
||||||
|
// Check that the correct iterator is returned when the inserted element is
|
||||||
|
// moved to a different bucket during internal rehashing. This depends on
|
||||||
|
// the particular key, and the implementation of StringMap and HashString.
|
||||||
|
// Changes to those might result in this test not actually checking that.
|
||||||
|
StringMap<uint32_t> t(1);
|
||||||
|
EXPECT_EQ(1u, t.getNumBuckets());
|
||||||
|
|
||||||
|
StringMap<uint32_t>::iterator It =
|
||||||
|
t.insert(std::make_pair("abcdef", 42)).first;
|
||||||
|
EXPECT_EQ(2u, t.getNumBuckets());
|
||||||
|
EXPECT_EQ("abcdef", It->first());
|
||||||
|
EXPECT_EQ(42u, It->second);
|
||||||
|
}
|
||||||
|
|
||||||
// Create a non-default constructable value
|
// Create a non-default constructable value
|
||||||
struct StringMapTestStruct {
|
struct StringMapTestStruct {
|
||||||
StringMapTestStruct(int i) : i(i) {}
|
StringMapTestStruct(int i) : i(i) {}
|
||||||
@ -228,8 +266,8 @@ struct MoveOnly {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
MoveOnly(const MoveOnly &);
|
MoveOnly(const MoveOnly &) LLVM_DELETED_FUNCTION;
|
||||||
MoveOnly &operator=(const MoveOnly &);
|
MoveOnly &operator=(const MoveOnly &) LLVM_DELETED_FUNCTION;
|
||||||
};
|
};
|
||||||
|
|
||||||
TEST_F(StringMapTest, MoveOnlyKey) {
|
TEST_F(StringMapTest, MoveOnlyKey) {
|
||||||
|
Loading…
Reference in New Issue
Block a user