MPMCQueue源码分析(上)

github地址:https://github.com/rigtorp/MP...

  • 关于__cpp_lib_hardware_interference_size

这个功能测试宏表示了c++17新引入的feature : https://zh.cppreference.com/w...
相关:https://www.it1352.com/178422...
其含义是两个对象间避免假数据共享(false sharing,也被称为伪共享)的最小偏移量。
关于false sharing : https://www.cnblogs.com/cyfon...

#ifdef __cpp_lib_hardware_interference_size
static constexpr size_t hardwareInterferenceSize = std::hardware_destructive_interference_size;
#else
static constexpr size_t hardwareInterferenceSize = 64;
#endif

上面这段代码即获取了当前硬件条件下的避免伪共享的最小偏移量,如果编译器还没有实现这个feature,则自定义为64字节。(主流的硬件架构cache line 大小为64字节 : https://blog.csdn.net/midion9...

为了避免伪共享的发生,让不同对象处于不同的缓存行即可,也就是设置偏移量为缓存行大小。

  • 关于__cpp_aligned_new

c++17引入的新feature,具体信息见: https://www.jianshu.com/p/7ce...
其作用是提供内存对齐版本的new运算符。

#if defined(__cpp_aligned_new)
template  using AlignedAllocator = std::allocator;
#else
template  struct AlignedAllocator {
  using value_type = T;
  T *allocate(std::size_t n) {
    if (n > std::numeric_limits::max() / sizeof(T)) {
      throw std::bad_array_new_length();
    }
#ifdef _WIN32
    auto *p = static_cast(_aligned_malloc(sizeof(T) * n, alignof(T)));
    if (p == nullptr) {
      throw std::bad_alloc();
    }
#else
    T *p;
    if (posix_memalign(reinterpret_cast(&p), alignof(T), sizeof(T) * n) != 0) {
      throw std::bad_alloc();
    }
#endif
    return p;
  }

  void deallocate(T *p, std::size_t) {
#ifdef WIN32
    _aligned_free(p);
#else
    free(p);
#endif
  }
};
#endif

如果编译器实现了aligned new的feature,则直接实现标准库版本的内存分配器,否则
自定义一个,根据平台不同使用_aligned_malloc/posix_memalign实现。

  • 关于Slot类
template  struct Slot {
~Slot() noexcept {
  if (turn & 1) {
    destroy();
  }
}

template  void construct(Args &&... args) noexcept {
static_assert(std::is_nothrow_constructible::value, "T must be nothrow constructible with Args&&...");
  new (&storage) T(std::forward(args)...);
}

void destroy() noexcept {
static_assert(std::is_nothrow_destructible::value, "T must be nothrow destructible");
  reinterpret_cast(&storage)->~T();
}

T &&move() noexcept { return reinterpret_cast(storage); }

// Align to avoid false sharing between adjacent slots
alignas(hardwareInterferenceSize) std::atomic turn = {0};
typename std::aligned_storage::type storage;
};

上面是Slot类的实现,重点观察以下几个地方:

  1. 数据成员turn的修饰符含义
  2. 数据成员storage的作用
  3. 析构函数
  4. construct函数中的placement new操作

使用std::aligned_storage定义了一个大小最多为sizeof(T), 对其要求为alignof(T)的对象storage。并在construct函数中通过placement new操作在其上构造T类型对象。
这一系列操作的目的就是提供给用户自定义的按照任何对齐要求的内存申请与构造的抽象能力,对于这套组合拳c++标准中有清晰的标注:
As with any other uninitialized storage, the objects are created using placement new and destroyed with explicit destructor calls.
参考文章:https://blog.csdn.net/ywcpig/...
https://en.cppreference.com/w...
使用alignas修饰符将数据成员turn的对齐要求修改为hardwardInterferenceSize,即文章第一部分定义的常量,由于结构体的大小必须是其数据成员最大对齐数的整数倍,因此不同Slot对象的storage不可能存在于同一个cache line中,避免了false sharing。
析构函数中根据turn是否为0选择性调用destroy函数析构对象,可以看到turn的另一个作用是标志此Slot中是否还存在T类对象。
tips:
对c++语法不够熟练的同学可以再看下这段代码,涉及到大括号初始化,类内初始化,xvalue的产生,可变参数的完美转发,noexcept等新标准特性。

你可能感兴趣的:(多线程,c++,队列,queue)