mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-15 07:59:57 +00:00
Add locking around the attributes list.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79255 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6ae8c73aca
commit
596c1dc3e2
@ -15,6 +15,7 @@
|
||||
#include "llvm/Type.h"
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
#include "llvm/ADT/FoldingSet.h"
|
||||
#include "llvm/System/Mutex.h"
|
||||
#include "llvm/Support/Streams.h"
|
||||
#include "llvm/Support/ManagedStatic.h"
|
||||
using namespace llvm;
|
||||
@ -124,9 +125,11 @@ public:
|
||||
};
|
||||
}
|
||||
|
||||
static ManagedStatic<sys::SmartMutex<true> > ALMutex;
|
||||
static ManagedStatic<FoldingSet<AttributeListImpl> > AttributesLists;
|
||||
|
||||
AttributeListImpl::~AttributeListImpl() {
|
||||
sys::SmartScopedLock<true> Lock(*ALMutex);
|
||||
AttributesLists->RemoveNode(this);
|
||||
}
|
||||
|
||||
@ -149,6 +152,9 @@ AttrListPtr AttrListPtr::get(const AttributeWithIndex *Attrs, unsigned NumAttrs)
|
||||
FoldingSetNodeID ID;
|
||||
AttributeListImpl::Profile(ID, Attrs, NumAttrs);
|
||||
void *InsertPos;
|
||||
|
||||
sys::SmartScopedLock<true> Lock(*ALMutex);
|
||||
|
||||
AttributeListImpl *PAL =
|
||||
AttributesLists->FindNodeOrInsertPos(ID, InsertPos);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user