[llvm-commits] [compiler-rt] r162993 - /compiler-rt/trunk/lib/sanitizer_common/sanitizer_stackdepot.cc

Dmitry Vyukov dvyukov at google.com
Fri Aug 31 05:47:44 PDT 2012


Author: dvyukov
Date: Fri Aug 31 07:47:44 2012
New Revision: 162993

URL: http://llvm.org/viewvc/llvm-project?rev=162993&view=rev
Log:
tsan: improve stack depot

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_stackdepot.cc

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_stackdepot.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_stackdepot.cc?rev=162993&r1=162992&r2=162993&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_stackdepot.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_stackdepot.cc Fri Aug 31 07:47:44 2012
@@ -14,73 +14,178 @@
 #include "sanitizer_stackdepot.h"
 #include "sanitizer_common.h"
 #include "sanitizer_mutex.h"
+#include "sanitizer_atomic.h"
 
 namespace __sanitizer {
 
+const int kTabSize = 1024 * 1024;  // Hash table size.
+const int kPartBits = 10;
+const int kPartShift = sizeof(u32) * 8 - kPartBits;
+const int kPartCount = 1 << kPartBits;  // Number of subparts in the table.
+const int kPartSize = kTabSize / kPartCount;
+const int kMaxId = 1 << kPartShift;
+
 struct StackDesc {
   StackDesc *link;
   u32 id;
-  uptr hash;
+  u32 hash;
   uptr size;
-  uptr stack[1];
+  uptr stack[1];  // [size]
 };
 
 static struct {
-  StaticSpinMutex mtx;
-  StackDesc *head;
-  u8 *region_pos;
-  u8 *region_end;
-  u32 seq;
+  StaticSpinMutex mtx;  // Protects alloc of new blocks for region allocator.
+  atomic_uintptr_t region_pos;  // Region allocator for StackDesc's.
+  atomic_uintptr_t region_end;
+  atomic_uintptr_t tab[kTabSize];  // Hash table of StackDesc's.
+  atomic_uint32_t seq[kPartCount];  // Unique id generators.
 } depot;
 
-static uptr hash(const uptr *stack, uptr size) {
-  return 0;
+static u32 hash(const uptr *stack, uptr size) {
+  // murmur2
+  const u32 m = 0x5bd1e995;
+  const u32 seed = 0x9747b28c;
+  const u32 r = 24;
+  u32 h = seed ^ (size * sizeof(uptr));
+  for (uptr i = 0; i < size; i++) {
+    u32 k = stack[i];
+    k *= m;
+    k ^= k >> r;
+    k *= m;
+    h *= m;
+    h ^= k;
+  }
+  h ^= h >> 13;
+  h *= m;
+  h ^= h >> 15;
+  return h;
+}
+
+static StackDesc *tryallocDesc(uptr memsz) {
+  // Optimisic lock-free allocation, essentially try to bump the region ptr.
+  for (;;) {
+    uptr cmp = atomic_load(&depot.region_pos, memory_order_acquire);
+    uptr end = atomic_load(&depot.region_end, memory_order_acquire);
+    if (cmp == 0 || cmp + memsz > end)
+      return 0;
+    if (atomic_compare_exchange_weak(
+        &depot.region_pos, &cmp, cmp + memsz,
+        memory_order_acquire))
+      return (StackDesc*)cmp;
+  }
 }
 
 static StackDesc *allocDesc(uptr size) {
+  // Frist, try to allocate optimisitically.
   uptr memsz = sizeof(StackDesc) + (size - 1) * sizeof(uptr);
-  if (depot.region_pos + memsz > depot.region_end) {
-    uptr allocsz = 64*1024;
+  StackDesc *s = tryallocDesc(memsz);
+  if (s)
+    return s;
+  // If failed, lock, retry and alloc new superblock.
+  SpinMutexLock l(&depot.mtx);
+  for (;;) {
+    s = tryallocDesc(memsz);
+    if (s)
+      return s;
+    atomic_store(&depot.region_pos, 0, memory_order_relaxed);
+    uptr allocsz = 64 * 1024;
     if (allocsz < memsz)
       allocsz = memsz;
-    depot.region_pos = (u8*)MmapOrDie(allocsz, "stack depot");
-    depot.region_end = depot.region_pos + allocsz;
+    uptr mem = (uptr)MmapOrDie(allocsz, "stack depot");
+    atomic_store(&depot.region_end, mem + allocsz, memory_order_release);
+    atomic_store(&depot.region_pos, mem, memory_order_release);
+  }
+}
+
+static u32 find(StackDesc *s, const uptr *stack, uptr size, u32 hash) {
+  // Searches linked list s for the stack, returns its id.
+  for (; s; s = s->link) {
+    if (s->hash == hash && s->size == size) {
+      uptr i = 0;
+      for (; i < size; i++) {
+        if (stack[i] != s->stack[i])
+          break;
+      }
+      if (i == size)
+        return s->id;
+    }
+  }
+  return 0;
+}
+
+static StackDesc *lock(atomic_uintptr_t *p) {
+  // Uses the pointer lsb as mutex.
+  for (int i = 0;; i++) {
+    uptr cmp = atomic_load(p, memory_order_relaxed);
+    if ((cmp & 1) == 0
+        && atomic_compare_exchange_weak(p, &cmp, cmp | 1,
+                                        memory_order_acquire))
+      return (StackDesc*)cmp;
+    if (i < 10)
+      proc_yield(10);
+    else
+      internal_sched_yield();
   }
-  StackDesc *s = (StackDesc*)depot.region_pos;
-  depot.region_pos += memsz;
-  return s;
+}
+
+static void unlock(atomic_uintptr_t *p, StackDesc *s) {
+  DCHECK_EQ((uptr)s & 1, 0);
+  atomic_store(p, (uptr)s, memory_order_release);
 }
 
 u32 StackDepotPut(const uptr *stack, uptr size) {
   if (stack == 0 || size == 0)
     return 0;
   uptr h = hash(stack, size);
-  SpinMutexLock l(&depot.mtx);
-  for (StackDesc *s = depot.head; s; s = s->link) {
-    if (s->hash == h && s->size == size
-        && internal_memcmp(s->stack, stack, size * sizeof(uptr)) == 0)
-      return s->id;
+  atomic_uintptr_t *p = &depot.tab[h % kTabSize];
+  uptr v = atomic_load(p, memory_order_consume);
+  StackDesc *s = (StackDesc*)(v & ~1);
+  // First, try to find the existing stack.
+  u32 id = find(s, stack, size, h);
+  if (id)
+    return id;
+  // If failed, lock, retry and insert new.
+  StackDesc *s2 = lock(p);
+  if (s2 != s) {
+    id = find(s2, stack, size, h);
+    if (id) {
+      unlock(p, s2);
+      return id;
+    }
   }
-  StackDesc *s = allocDesc(size);
-  s->id = ++depot.seq;
+  uptr part = (h % kTabSize) / kPartSize;
+  id = atomic_fetch_add(&depot.seq[part], 1, memory_order_relaxed) + 1;
+  CHECK_LT(id, kMaxId);
+  id |= part << kPartShift;
+  s = allocDesc(size);
+  s->id = id;
   s->hash = h;
   s->size = size;
   internal_memcpy(s->stack, stack, size * sizeof(uptr));
-  s->link = depot.head;
-  depot.head = s;
-  return s->id;
+  s->link = s2;
+  unlock(p, s);
+  return id;
 }
 
 const uptr *StackDepotGet(u32 id, uptr *size) {
   if (id == 0)
     return 0;
-  SpinMutexLock l(&depot.mtx);
-  for (StackDesc *s = depot.head; s; s = s->link) {
-    if (s->id == id) {
-      *size = s->size;
-      return s->stack;
+  // High kPartBits contain part id, so we need to scan at most kPartSize lists.
+  uptr part = id >> kPartShift;
+  for (int i = 0; i != kPartSize; i++) {
+    uptr idx = part * kPartSize + i;
+    CHECK_LT(idx, kTabSize);
+    atomic_uintptr_t *p = &depot.tab[idx];
+    uptr v = atomic_load(p, memory_order_consume);
+    StackDesc *s = (StackDesc*)(v & ~1);
+    for (; s; s = s->link) {
+      if (s->id == id) {
+        *size = s->size;
+        return s->stack;
+      }
     }
   }
+  *size = 0;
   return 0;
 }
 





More information about the llvm-commits mailing list