forked from OSchip/llvm-project
provide an optional API to allow datatypes in a stringmap to be *gasp*
initialized with a value if they want, by specializing the StringMapEntryInitializer class. llvm-svn: 44430
This commit is contained in:
parent
1150e25901
commit
d1f0e3d791
|
@ -23,6 +23,17 @@ namespace llvm {
|
||||||
template<typename ValueT>
|
template<typename ValueT>
|
||||||
class StringMapIterator;
|
class StringMapIterator;
|
||||||
|
|
||||||
|
/// StringMapEntryInitializer - This datatype can be partially specialized for
|
||||||
|
/// various datatypes in a stringmap to allow them to be initialized when an
|
||||||
|
/// entry is default constructed for the map.
|
||||||
|
template<typename ValueTy>
|
||||||
|
class StringMapEntryInitializer {
|
||||||
|
public:
|
||||||
|
template <typename InitTy>
|
||||||
|
static void Initialize(ValueTy &T, InitTy InitVal) {
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/// StringMapEntryBase - Shared base class of StringMapEntry instances.
|
/// StringMapEntryBase - Shared base class of StringMapEntry instances.
|
||||||
class StringMapEntryBase {
|
class StringMapEntryBase {
|
||||||
|
@ -132,9 +143,10 @@ public:
|
||||||
|
|
||||||
/// Create - Create a StringMapEntry for the specified key and default
|
/// Create - Create a StringMapEntry for the specified key and default
|
||||||
/// construct the value.
|
/// construct the value.
|
||||||
template<typename AllocatorTy>
|
template<typename AllocatorTy, typename InitType>
|
||||||
static StringMapEntry *Create(const char *KeyStart, const char *KeyEnd,
|
static StringMapEntry *Create(const char *KeyStart, const char *KeyEnd,
|
||||||
AllocatorTy &Allocator) {
|
AllocatorTy &Allocator,
|
||||||
|
InitType InitVal) {
|
||||||
unsigned KeyLength = KeyEnd-KeyStart;
|
unsigned KeyLength = KeyEnd-KeyStart;
|
||||||
|
|
||||||
// Okay, the item doesn't already exist, and 'Bucket' is the bucket to fill
|
// Okay, the item doesn't already exist, and 'Bucket' is the bucket to fill
|
||||||
|
@ -154,15 +166,30 @@ public:
|
||||||
char *StrBuffer = const_cast<char*>(NewItem->getKeyData());
|
char *StrBuffer = const_cast<char*>(NewItem->getKeyData());
|
||||||
memcpy(StrBuffer, KeyStart, KeyLength);
|
memcpy(StrBuffer, KeyStart, KeyLength);
|
||||||
StrBuffer[KeyLength] = 0; // Null terminate for convenience of clients.
|
StrBuffer[KeyLength] = 0; // Null terminate for convenience of clients.
|
||||||
|
|
||||||
|
// Initialize the value if the client wants to.
|
||||||
|
StringMapEntryInitializer<ValueTy>::Initialize(NewItem->getValue(),InitVal);
|
||||||
return NewItem;
|
return NewItem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Create - Create a StringMapEntry with normal malloc/free.
|
template<typename AllocatorTy>
|
||||||
static StringMapEntry *Create(const char *KeyStart, const char *KeyEnd) {
|
static StringMapEntry *Create(const char *KeyStart, const char *KeyEnd,
|
||||||
MallocAllocator A;
|
AllocatorTy &Allocator) {
|
||||||
return Create(KeyStart, KeyEnd, A);
|
return Create(KeyStart, KeyEnd, Allocator, (void*)0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// Create - Create a StringMapEntry with normal malloc/free.
|
||||||
|
template<typename InitType>
|
||||||
|
static StringMapEntry *Create(const char *KeyStart, const char *KeyEnd,
|
||||||
|
InitType InitVal) {
|
||||||
|
MallocAllocator A;
|
||||||
|
return Create(KeyStart, KeyEnd, A, InitVal);
|
||||||
|
}
|
||||||
|
|
||||||
|
static StringMapEntry *Create(const char *KeyStart, const char *KeyEnd) {
|
||||||
|
return Create(KeyStart, KeyEnd, (void*)0);
|
||||||
|
}
|
||||||
|
|
||||||
/// GetStringMapEntryFromValue - Given a value that is known to be embedded
|
/// GetStringMapEntryFromValue - Given a value that is known to be embedded
|
||||||
/// into a StringMapEntry, return the StringMapEntry itself.
|
/// into a StringMapEntry, return the StringMapEntry itself.
|
||||||
|
@ -262,14 +289,16 @@ public:
|
||||||
/// GetOrCreateValue - Look up the specified key in the table. If a value
|
/// GetOrCreateValue - Look up the specified key in the table. If a value
|
||||||
/// exists, return it. Otherwise, default construct a value, insert it, and
|
/// exists, return it. Otherwise, default construct a value, insert it, and
|
||||||
/// return.
|
/// return.
|
||||||
|
template <typename InitTy>
|
||||||
StringMapEntry<ValueTy> &GetOrCreateValue(const char *KeyStart,
|
StringMapEntry<ValueTy> &GetOrCreateValue(const char *KeyStart,
|
||||||
const char *KeyEnd) {
|
const char *KeyEnd,
|
||||||
|
InitTy Val) {
|
||||||
unsigned BucketNo = LookupBucketFor(KeyStart, KeyEnd);
|
unsigned BucketNo = LookupBucketFor(KeyStart, KeyEnd);
|
||||||
ItemBucket &Bucket = TheTable[BucketNo];
|
ItemBucket &Bucket = TheTable[BucketNo];
|
||||||
if (Bucket.Item && Bucket.Item != getTombstoneVal())
|
if (Bucket.Item && Bucket.Item != getTombstoneVal())
|
||||||
return *static_cast<MapEntryTy*>(Bucket.Item);
|
return *static_cast<MapEntryTy*>(Bucket.Item);
|
||||||
|
|
||||||
MapEntryTy *NewItem = MapEntryTy::Create(KeyStart, KeyEnd, Allocator);
|
MapEntryTy *NewItem = MapEntryTy::Create(KeyStart, KeyEnd, Allocator, Val);
|
||||||
|
|
||||||
if (Bucket.Item == getTombstoneVal())
|
if (Bucket.Item == getTombstoneVal())
|
||||||
--NumTombstones;
|
--NumTombstones;
|
||||||
|
@ -284,6 +313,11 @@ public:
|
||||||
return *NewItem;
|
return *NewItem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
StringMapEntry<ValueTy> &GetOrCreateValue(const char *KeyStart,
|
||||||
|
const char *KeyEnd) {
|
||||||
|
return GetOrCreateValue(KeyStart, KeyEnd, (void*)0);
|
||||||
|
}
|
||||||
|
|
||||||
/// remove - Remove the specified key/value pair from the map, but do not
|
/// remove - Remove the specified key/value pair from the map, but do not
|
||||||
/// erase it. This aborts if the key is not in the map.
|
/// erase it. This aborts if the key is not in the map.
|
||||||
void remove(MapEntryTy *KeyValue) {
|
void remove(MapEntryTy *KeyValue) {
|
||||||
|
|
Loading…
Reference in New Issue