mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
implement SmallPtrSet::erase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33581 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -45,6 +45,33 @@ bool SmallPtrSetImpl::insert(void *Ptr) {
|
||||
return true;
|
||||
}
|
||||
|
||||
bool SmallPtrSetImpl::erase(void *Ptr) {
|
||||
if (isSmall()) {
|
||||
// Check to see if it is in the set.
|
||||
for (void **APtr = SmallArray, **E = SmallArray+NumElements;
|
||||
APtr != E; ++APtr)
|
||||
if (*APtr == Ptr) {
|
||||
// If it is in the set, move everything over, replacing this element.
|
||||
memmove(APtr, APtr+1, sizeof(void*)*(E-APtr-1));
|
||||
// Clear the end element.
|
||||
E[-1] = getEmptyMarker();
|
||||
--NumElements;
|
||||
return false;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
// Okay, we know we have space. Find a hash bucket.
|
||||
void **Bucket = const_cast<void**>(FindBucketFor(Ptr));
|
||||
if (*Bucket != Ptr) return false; // Not in the set?
|
||||
|
||||
// Set this as a tombstone.
|
||||
*Bucket = getTombstoneMarker();
|
||||
--NumElements;
|
||||
return true;
|
||||
}
|
||||
|
||||
void * const *SmallPtrSetImpl::FindBucketFor(void *Ptr) const {
|
||||
unsigned Bucket = Hash(Ptr);
|
||||
unsigned ArraySize = CurArraySize;
|
||||
|
Reference in New Issue
Block a user