0

“此平台上未实现 64 位 NoBarrier_Store()” 我在 win7 上使用 tcmalloc 和 vs2005。我的应用程序中有两个线程,一个执行 malloc(),另一个执行 free()。当我的应用程序启动时,tcmalloc 会打印这个。调试后,我发现以下函数无法在 _WIN32 上运行,

// Return a suggested delay in nanoseconds for iteration number "loop"
static int SuggestedDelayNS(int loop) {
  // Weak pseudo-random number generator to get some spread between threads
  // when many are spinning.
  static base::subtle::Atomic64 rand;
  uint64 r = base::subtle::NoBarrier_Load(&rand);
  r = 0x5deece66dLL * r + 0xb;   // numbers from nrand48()
  base::subtle::NoBarrier_Store(&rand, r);

  r <<= 16;   // 48-bit random number now in top 48-bits.
  if (loop < 0 || loop > 32) {   // limit loop to 0..32
    loop = 32;
  }
  // loop>>3 cannot exceed 4 because loop cannot exceed 32.
  // Select top 20..24 bits of lower 48 bits,
  // giving approximately 0ms to 16ms.
  // Mean is exponential in loop for first 32 iterations, then 8ms.
  // The futex path multiplies this by 16, since we expect explicit wakeups
  // almost always on that path.
  return r >> (44 - (loop >> 3));
}

我想知道如何在win32上避免这种情况。非常感谢。

4

1 回答 1

1

它似乎在使用没有内存屏障的原子加载和存储。在某些多 CPU 系统上可能会使这项工作更快一些。

在 x86 上,我们没有这些类型的操作。系统中的其他核心始终可以看到加载和存储。缓存同步是在硬件中实现的,不能被程序控制。

也许Atomic使用的库具有没有 NoBarrier 前缀的加载和存储操作?改用那些。

于 2012-07-03T06:54:23.220 回答