diff options
| author | Owen Anderson <resistor@mac.com> | 2009-06-23 00:21:15 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2009-06-23 00:21:15 +0000 |
| commit | e3c1aca0d9f4b22b4387bb1d3ed69caf25345f5e (patch) | |
| tree | 866e8b89c37880aa178ff7ecc7f21428a1bc2fa0 | |
| parent | 8bae300ade0672ce84563baae71238629e0bb6f9 (diff) | |
| download | bcm5719-llvm-e3c1aca0d9f4b22b4387bb1d3ed69caf25345f5e.tar.gz bcm5719-llvm-e3c1aca0d9f4b22b4387bb1d3ed69caf25345f5e.zip | |
Guard the layout info object.
llvm-svn: 73928
| -rw-r--r-- | llvm/lib/Target/TargetData.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Target/TargetData.cpp b/llvm/lib/Target/TargetData.cpp index 67fefbb70b6..7b843df7422 100644 --- a/llvm/lib/Target/TargetData.cpp +++ b/llvm/lib/Target/TargetData.cpp @@ -23,6 +23,7 @@ #include "llvm/Support/GetElementPtrTypeIterator.h" #include "llvm/Support/MathExtras.h" #include "llvm/Support/ManagedStatic.h" +#include "llvm/System/Mutex.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/StringExtras.h" #include <algorithm> @@ -345,11 +346,13 @@ typedef DenseMap<LayoutKey, StructLayout*, DenseMapLayoutKeyInfo> LayoutInfoTy; } static ManagedStatic<LayoutInfoTy> LayoutInfo; +static ManagedStatic<sys::SmartMutex<true> > LayoutLock; TargetData::~TargetData() { if (!LayoutInfo.isConstructed()) return; + sys::SmartScopedLock<true> Lock(&*LayoutLock); // Remove any layouts for this TD. LayoutInfoTy &TheMap = *LayoutInfo; for (LayoutInfoTy::iterator I = TheMap.begin(), E = TheMap.end(); I != E; ) { @@ -366,6 +369,7 @@ TargetData::~TargetData() { const StructLayout *TargetData::getStructLayout(const StructType *Ty) const { LayoutInfoTy &TheMap = *LayoutInfo; + sys::SmartScopedLock<true> Lock(&*LayoutLock); StructLayout *&SL = TheMap[LayoutKey(this, Ty)]; if (SL) return SL; @@ -390,6 +394,7 @@ const StructLayout *TargetData::getStructLayout(const StructType *Ty) const { void TargetData::InvalidateStructLayoutInfo(const StructType *Ty) const { if (!LayoutInfo.isConstructed()) return; // No cache. + sys::SmartScopedLock<true> Lock(&*LayoutLock); LayoutInfoTy::iterator I = LayoutInfo->find(LayoutKey(this, Ty)); if (I == LayoutInfo->end()) return; |

