fead0d0600
Drop the previous Semaphore class from platform files. Add new Semaphore class using the new TimeDelta class for the WaitFor() operation. Consistently assert correct behaviour for the different implementations. Improve test coverage of the Semaphore class. R=mstarzinger@chromium.org Review URL: https://codereview.chromium.org/23748003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16473 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
189 lines
6.5 KiB
C++
189 lines
6.5 KiB
C++
// Copyright 2010 the V8 project authors. All rights reserved.
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are
|
|
// met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright
|
|
// notice, this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above
|
|
// copyright notice, this list of conditions and the following
|
|
// disclaimer in the documentation and/or other materials provided
|
|
// with the distribution.
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
// contributors may be used to endorse or promote products derived
|
|
// from this software without specific prior written permission.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
//
|
|
// Tests of the circular queue.
|
|
|
|
#include "v8.h"
|
|
#include "circular-queue-inl.h"
|
|
#include "cctest.h"
|
|
|
|
using i::SamplingCircularQueue;
|
|
|
|
|
|
TEST(SamplingCircularQueue) {
|
|
typedef i::AtomicWord Record;
|
|
const int kMaxRecordsInQueue = 4;
|
|
SamplingCircularQueue<Record, kMaxRecordsInQueue> scq;
|
|
|
|
// Check that we are using non-reserved values.
|
|
// Fill up the first chunk.
|
|
CHECK_EQ(NULL, scq.StartDequeue());
|
|
for (Record i = 1; i < 1 + kMaxRecordsInQueue; ++i) {
|
|
Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue());
|
|
CHECK_NE(NULL, rec);
|
|
*rec = i;
|
|
scq.FinishEnqueue();
|
|
}
|
|
|
|
// The queue is full, enqueue is not allowed.
|
|
CHECK_EQ(NULL, scq.StartEnqueue());
|
|
|
|
// Try to enqueue when the the queue is full. Consumption must be available.
|
|
CHECK_NE(NULL, scq.StartDequeue());
|
|
for (int i = 0; i < 10; ++i) {
|
|
Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue());
|
|
CHECK_EQ(NULL, rec);
|
|
CHECK_NE(NULL, scq.StartDequeue());
|
|
}
|
|
|
|
// Consume all records.
|
|
for (Record i = 1; i < 1 + kMaxRecordsInQueue; ++i) {
|
|
Record* rec = reinterpret_cast<Record*>(scq.StartDequeue());
|
|
CHECK_NE(NULL, rec);
|
|
CHECK_EQ(static_cast<int64_t>(i), static_cast<int64_t>(*rec));
|
|
CHECK_EQ(rec, reinterpret_cast<Record*>(scq.StartDequeue()));
|
|
scq.FinishDequeue();
|
|
CHECK_NE(rec, reinterpret_cast<Record*>(scq.StartDequeue()));
|
|
}
|
|
// The queue is empty.
|
|
CHECK_EQ(NULL, scq.StartDequeue());
|
|
|
|
|
|
CHECK_EQ(NULL, scq.StartDequeue());
|
|
for (Record i = 0; i < kMaxRecordsInQueue / 2; ++i) {
|
|
Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue());
|
|
CHECK_NE(NULL, rec);
|
|
*rec = i;
|
|
scq.FinishEnqueue();
|
|
}
|
|
|
|
// Consume all available kMaxRecordsInQueue / 2 records.
|
|
CHECK_NE(NULL, scq.StartDequeue());
|
|
for (Record i = 0; i < kMaxRecordsInQueue / 2; ++i) {
|
|
Record* rec = reinterpret_cast<Record*>(scq.StartDequeue());
|
|
CHECK_NE(NULL, rec);
|
|
CHECK_EQ(static_cast<int64_t>(i), static_cast<int64_t>(*rec));
|
|
CHECK_EQ(rec, reinterpret_cast<Record*>(scq.StartDequeue()));
|
|
scq.FinishDequeue();
|
|
CHECK_NE(rec, reinterpret_cast<Record*>(scq.StartDequeue()));
|
|
}
|
|
|
|
// The queue is empty.
|
|
CHECK_EQ(NULL, scq.StartDequeue());
|
|
}
|
|
|
|
|
|
namespace {
|
|
|
|
typedef i::AtomicWord Record;
|
|
typedef SamplingCircularQueue<Record, 12> TestSampleQueue;
|
|
|
|
class ProducerThread: public i::Thread {
|
|
public:
|
|
ProducerThread(TestSampleQueue* scq,
|
|
int records_per_chunk,
|
|
Record value,
|
|
i::Semaphore* finished)
|
|
: Thread("producer"),
|
|
scq_(scq),
|
|
records_per_chunk_(records_per_chunk),
|
|
value_(value),
|
|
finished_(finished) { }
|
|
|
|
virtual void Run() {
|
|
for (Record i = value_; i < value_ + records_per_chunk_; ++i) {
|
|
Record* rec = reinterpret_cast<Record*>(scq_->StartEnqueue());
|
|
CHECK_NE(NULL, rec);
|
|
*rec = i;
|
|
scq_->FinishEnqueue();
|
|
}
|
|
|
|
finished_->Signal();
|
|
}
|
|
|
|
private:
|
|
TestSampleQueue* scq_;
|
|
const int records_per_chunk_;
|
|
Record value_;
|
|
i::Semaphore* finished_;
|
|
};
|
|
|
|
} // namespace
|
|
|
|
TEST(SamplingCircularQueueMultithreading) {
|
|
// Emulate multiple VM threads working 'one thread at a time.'
|
|
// This test enqueues data from different threads. This corresponds
|
|
// to the case of profiling under Linux, where signal handler that
|
|
// does sampling is called in the context of different VM threads.
|
|
|
|
const int kRecordsPerChunk = 4;
|
|
TestSampleQueue scq;
|
|
i::Semaphore semaphore(0);
|
|
|
|
ProducerThread producer1(&scq, kRecordsPerChunk, 1, &semaphore);
|
|
ProducerThread producer2(&scq, kRecordsPerChunk, 10, &semaphore);
|
|
ProducerThread producer3(&scq, kRecordsPerChunk, 20, &semaphore);
|
|
|
|
CHECK_EQ(NULL, scq.StartDequeue());
|
|
producer1.Start();
|
|
semaphore.Wait();
|
|
for (Record i = 1; i < 1 + kRecordsPerChunk; ++i) {
|
|
Record* rec = reinterpret_cast<Record*>(scq.StartDequeue());
|
|
CHECK_NE(NULL, rec);
|
|
CHECK_EQ(static_cast<int64_t>(i), static_cast<int64_t>(*rec));
|
|
CHECK_EQ(rec, reinterpret_cast<Record*>(scq.StartDequeue()));
|
|
scq.FinishDequeue();
|
|
CHECK_NE(rec, reinterpret_cast<Record*>(scq.StartDequeue()));
|
|
}
|
|
|
|
CHECK_EQ(NULL, scq.StartDequeue());
|
|
producer2.Start();
|
|
semaphore.Wait();
|
|
for (Record i = 10; i < 10 + kRecordsPerChunk; ++i) {
|
|
Record* rec = reinterpret_cast<Record*>(scq.StartDequeue());
|
|
CHECK_NE(NULL, rec);
|
|
CHECK_EQ(static_cast<int64_t>(i), static_cast<int64_t>(*rec));
|
|
CHECK_EQ(rec, reinterpret_cast<Record*>(scq.StartDequeue()));
|
|
scq.FinishDequeue();
|
|
CHECK_NE(rec, reinterpret_cast<Record*>(scq.StartDequeue()));
|
|
}
|
|
|
|
CHECK_EQ(NULL, scq.StartDequeue());
|
|
producer3.Start();
|
|
semaphore.Wait();
|
|
for (Record i = 20; i < 20 + kRecordsPerChunk; ++i) {
|
|
Record* rec = reinterpret_cast<Record*>(scq.StartDequeue());
|
|
CHECK_NE(NULL, rec);
|
|
CHECK_EQ(static_cast<int64_t>(i), static_cast<int64_t>(*rec));
|
|
CHECK_EQ(rec, reinterpret_cast<Record*>(scq.StartDequeue()));
|
|
scq.FinishDequeue();
|
|
CHECK_NE(rec, reinterpret_cast<Record*>(scq.StartDequeue()));
|
|
}
|
|
|
|
CHECK_EQ(NULL, scq.StartDequeue());
|
|
}
|