X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FProducerConsumerQueue.h;h=57d41cca84b9599604bbca4581b3cf862b423fe2;hb=bdd9360c598d80d524de6780cd5be65af56d98fd;hp=053c0e264b649075b2d148af5dc199b83ad95b22;hpb=ed8c80a0e0988e4ce687f51ca832a00e4a6b7930;p=folly.git diff --git a/folly/ProducerConsumerQueue.h b/folly/ProducerConsumerQueue.h index 053c0e26..57d41cca 100644 --- a/folly/ProducerConsumerQueue.h +++ b/folly/ProducerConsumerQueue.h @@ -1,5 +1,5 @@ /* - * Copyright 2017 Facebook, Inc. + * Copyright 2012-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,13 +27,15 @@ #include #include +#include + namespace folly { /* * ProducerConsumerQueue is a one producer and one consumer queue * without locks. */ -template +template struct ProducerConsumerQueue { typedef T value_type; @@ -62,12 +64,12 @@ struct ProducerConsumerQueue { // (No real synchronization needed at destructor time: only one // thread can be doing this.) if (!std::is_trivially_destructible::value) { - size_t read = readIndex_; - size_t end = writeIndex_; - while (read != end) { - records_[read].~T(); - if (++read == size_) { - read = 0; + size_t readIndex = readIndex_; + size_t endIndex = writeIndex_; + while (readIndex != endIndex) { + records_[readIndex].~T(); + if (++readIndex == size_) { + readIndex = 0; } } } @@ -75,7 +77,7 @@ struct ProducerConsumerQueue { std::free(records_); } - template + template bool write(Args&&... recordArgs) { auto const currentWrite = writeIndex_.load(std::memory_order_relaxed); auto nextRecord = currentWrite + 1; @@ -165,12 +167,22 @@ struct ProducerConsumerQueue { return ret; } -private: + // maximum number of items in the queue. + size_t capacity() const { + return size_ - 1; + } + + private: + char pad0_[hardware_destructive_interference_size]; const uint32_t size_; T* const records_; - std::atomic readIndex_; - std::atomic writeIndex_; + alignas(hardware_destructive_interference_size) + std::atomic readIndex_; + alignas(hardware_destructive_interference_size) + std::atomic writeIndex_; + + char pad1_[hardware_destructive_interference_size - sizeof(writeIndex_)]; }; -} +} // namespace folly