#include "gpu/command_buffer/client/fenced_allocator.h"
#include <stdint.h>
#include <array>
#include <memory>
#include "base/compiler_specific.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/aligned_memory.h"
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "gpu/command_buffer/client/cmd_buffer_helper.h"
#include "gpu/command_buffer/service/command_buffer_direct.h"
#include "gpu/command_buffer/service/mocks.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace gpu {
using testing::Return;
using testing::Mock;
using testing::Truly;
using testing::Sequence;
using testing::DoAll;
using testing::Invoke;
using testing::InvokeWithoutArgs;
using testing::_;
class BaseFencedAllocatorTest : public testing::Test {
protected:
static const unsigned int kBufferSize = 1024;
static const int kAllocAlignment = 16;
void SetUp() override {
command_buffer_ = std::make_unique<CommandBufferDirect>();
api_mock_ = std::make_unique<AsyncAPIMock>(true, command_buffer_.get(),
command_buffer_->service());
EXPECT_CALL(*api_mock_, DoCommand(cmd::kNoop, 0, _))
.WillRepeatedly(Return(error::kNoError));
EXPECT_CALL(*api_mock_.get(), DoCommand(cmd::kSetToken, 1, _))
.WillRepeatedly(DoAll(Invoke(api_mock_.get(), &AsyncAPIMock::SetToken),
Return(error::kNoError)));
helper_ = std::make_unique<CommandBufferHelper>(command_buffer_.get());
helper_->Initialize(kBufferSize);
}
int32_t GetToken() { return command_buffer_->GetLastState().token; }
std::unique_ptr<CommandBufferDirect> command_buffer_;
std::unique_ptr<AsyncAPIMock> api_mock_;
std::unique_ptr<CommandBufferHelper> helper_;
base::test::SingleThreadTaskEnvironment task_environment_;
};
const unsigned int BaseFencedAllocatorTest::kBufferSize;
class FencedAllocatorTest : public BaseFencedAllocatorTest {
protected:
void SetUp() override {
BaseFencedAllocatorTest::SetUp();
allocator_ = std::make_unique<FencedAllocator>(kBufferSize, helper_.get());
}
void TearDown() override {
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(allocator_->CheckConsistency());
BaseFencedAllocatorTest::TearDown();
}
std::unique_ptr<FencedAllocator> allocator_;
};
TEST_F(FencedAllocatorTest, TestBasic) {
allocator_->CheckConsistency();
EXPECT_FALSE(allocator_->InUseOrFreePending());
const unsigned int kSize = 16;
FencedAllocator::Offset offset = allocator_->Alloc(kSize);
EXPECT_TRUE(allocator_->InUseOrFreePending());
EXPECT_NE(FencedAllocator::kInvalidOffset, offset);
EXPECT_GE(kBufferSize, offset+kSize);
EXPECT_TRUE(allocator_->CheckConsistency());
allocator_->Free(offset);
EXPECT_FALSE(allocator_->InUseOrFreePending());
EXPECT_TRUE(allocator_->CheckConsistency());
}
TEST_F(FencedAllocatorTest, TestAllocZero) {
FencedAllocator::Offset offset = allocator_->Alloc(0);
EXPECT_EQ(FencedAllocator::kInvalidOffset, offset);
EXPECT_FALSE(allocator_->InUseOrFreePending());
EXPECT_TRUE(allocator_->CheckConsistency());
}
TEST_F(FencedAllocatorTest, TestOutOfMemory) {
EXPECT_TRUE(allocator_->CheckConsistency());
const unsigned int kSize = 16;
const unsigned int kAllocCount = kBufferSize / kSize;
CHECK_EQ(kAllocCount * kSize, kBufferSize);
std::array<FencedAllocator::Offset, kAllocCount> offsets;
for (unsigned int i = 0; i < kAllocCount; ++i) {
offsets[i] = allocator_->Alloc(kSize);
EXPECT_NE(FencedAllocator::kInvalidOffset, offsets[i]);
EXPECT_GE(kBufferSize, offsets[i]+kSize);
EXPECT_TRUE(allocator_->CheckConsistency());
}
FencedAllocator::Offset offset_failed = allocator_->Alloc(kSize);
EXPECT_EQ(FencedAllocator::kInvalidOffset, offset_failed);
EXPECT_TRUE(allocator_->CheckConsistency());
allocator_->Free(offsets[0]);
EXPECT_TRUE(allocator_->CheckConsistency());
offsets[0] = allocator_->Alloc(kSize/2);
EXPECT_NE(FencedAllocator::kInvalidOffset, offsets[0]);
EXPECT_GE(kBufferSize, offsets[0]+kSize);
EXPECT_TRUE(allocator_->CheckConsistency());
offset_failed = allocator_->Alloc(kSize);
EXPECT_EQ(FencedAllocator::kInvalidOffset, offset_failed);
EXPECT_TRUE(allocator_->CheckConsistency());
for (unsigned int i = 0; i < kAllocCount; ++i) {
allocator_->Free(offsets[i]);
EXPECT_TRUE(allocator_->CheckConsistency());
}
}
TEST_F(FencedAllocatorTest, TestFreePendingToken) {
EXPECT_TRUE(allocator_->CheckConsistency());
const unsigned int kSize = 16;
const unsigned int kAllocCount = kBufferSize / kSize;
CHECK_EQ(kAllocCount * kSize, kBufferSize);
std::array<FencedAllocator::Offset, kAllocCount> offsets;
for (unsigned int i = 0; i < kAllocCount; ++i) {
offsets[i] = allocator_->Alloc(kSize);
EXPECT_NE(FencedAllocator::kInvalidOffset, offsets[i]);
EXPECT_GE(kBufferSize, offsets[i]+kSize);
EXPECT_TRUE(allocator_->CheckConsistency());
}
FencedAllocator::Offset offset_failed = allocator_->Alloc(kSize);
EXPECT_EQ(FencedAllocator::kInvalidOffset, offset_failed);
EXPECT_TRUE(allocator_->CheckConsistency());
int32_t token = helper_.get()->InsertToken();
allocator_->FreePendingToken(offsets[0], token);
EXPECT_TRUE(allocator_->CheckConsistency());
EXPECT_GT(token, GetToken());
offsets[0] = allocator_->Alloc(kSize);
EXPECT_NE(FencedAllocator::kInvalidOffset, offsets[0]);
EXPECT_GE(kBufferSize, offsets[0]+kSize);
EXPECT_TRUE(allocator_->CheckConsistency());
EXPECT_LE(token, GetToken());
for (unsigned int i = 0; i < kAllocCount; ++i) {
allocator_->Free(offsets[i]);
EXPECT_TRUE(allocator_->CheckConsistency());
}
}
TEST_F(FencedAllocatorTest, FreeUnused) {
EXPECT_TRUE(allocator_->CheckConsistency());
const unsigned int kSize = 16;
const unsigned int kAllocCount = kBufferSize / kSize;
CHECK_EQ(kAllocCount * kSize, kBufferSize);
std::array<FencedAllocator::Offset, kAllocCount> offsets;
for (unsigned int i = 0; i < kAllocCount; ++i) {
offsets[i] = allocator_->Alloc(kSize);
EXPECT_NE(FencedAllocator::kInvalidOffset, offsets[i]);
EXPECT_GE(kBufferSize, offsets[i]+kSize);
EXPECT_TRUE(allocator_->CheckConsistency());
}
EXPECT_TRUE(allocator_->InUseOrFreePending());
EXPECT_EQ(0u, allocator_->GetLargestFreeSize());
int32_t token = helper_.get()->InsertToken();
allocator_->FreePendingToken(offsets[0], token);
EXPECT_TRUE(allocator_->CheckConsistency());
helper_->Finish();
allocator_->FreeUnused();
EXPECT_EQ(kSize, allocator_->GetLargestFreeSize());
token = helper_.get()->InsertToken();
allocator_->FreePendingToken(offsets[1], token);
token = helper_.get()->InsertToken();
allocator_->FreePendingToken(offsets[2], token);
EXPECT_TRUE(allocator_->CheckConsistency());
EXPECT_EQ(kSize, allocator_->GetLargestFreeSize());
helper_->Finish();
allocator_->FreeUnused();
EXPECT_EQ(kSize * 3, allocator_->GetLargestFreeSize());
EXPECT_TRUE(allocator_->InUseOrFreePending());
for (unsigned int i = 3; i < kAllocCount; ++i) {
allocator_->Free(offsets[i]);
EXPECT_TRUE(allocator_->CheckConsistency());
}
EXPECT_FALSE(allocator_->InUseOrFreePending());
}
TEST_F(FencedAllocatorTest, TestGetLargestFreeSize) {
EXPECT_TRUE(allocator_->CheckConsistency());
EXPECT_EQ(kBufferSize, allocator_->GetLargestFreeSize());
FencedAllocator::Offset offset = allocator_->Alloc(kBufferSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset);
EXPECT_EQ(0u, allocator_->GetLargestFreeSize());
allocator_->Free(offset);
EXPECT_EQ(kBufferSize, allocator_->GetLargestFreeSize());
const unsigned int kSize = 16;
offset = allocator_->Alloc(kSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset);
EXPECT_EQ(kBufferSize - kSize, allocator_->GetLargestFreeSize());
FencedAllocator::Offset offset1 = allocator_->Alloc(kSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset1);
FencedAllocator::Offset offset2 = allocator_->Alloc(kSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset2);
allocator_->Free(offset);
allocator_->Free(offset1);
EXPECT_EQ(kBufferSize - 3 * kSize, allocator_->GetLargestFreeSize());
offset = allocator_->Alloc(kBufferSize - 3 * kSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset);
EXPECT_EQ(2 * kSize, allocator_->GetLargestFreeSize());
offset1 = allocator_->Alloc(2 * kSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset1);
EXPECT_EQ(0u, allocator_->GetLargestFreeSize());
allocator_->Free(offset);
allocator_->Free(offset1);
allocator_->Free(offset2);
}
TEST_F(FencedAllocatorTest, TestGetLargestFreeOrPendingSize) {
EXPECT_TRUE(allocator_->CheckConsistency());
EXPECT_EQ(kBufferSize, allocator_->GetLargestFreeOrPendingSize());
FencedAllocator::Offset offset = allocator_->Alloc(kBufferSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset);
EXPECT_EQ(0u, allocator_->GetLargestFreeOrPendingSize());
allocator_->Free(offset);
EXPECT_EQ(kBufferSize, allocator_->GetLargestFreeOrPendingSize());
const unsigned int kSize = 16;
offset = allocator_->Alloc(kSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset);
EXPECT_EQ(kBufferSize - kSize, allocator_->GetLargestFreeOrPendingSize());
FencedAllocator::Offset offset1 = allocator_->Alloc(kSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset1);
FencedAllocator::Offset offset2 = allocator_->Alloc(kSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset2);
allocator_->Free(offset);
allocator_->Free(offset1);
EXPECT_EQ(kBufferSize - 3 * kSize,
allocator_->GetLargestFreeOrPendingSize());
int32_t token = helper_.get()->InsertToken();
allocator_->FreePendingToken(offset2, token);
EXPECT_EQ(kBufferSize, allocator_->GetLargestFreeOrPendingSize());
EXPECT_EQ(kBufferSize - 3 * kSize,
allocator_->GetLargestFreeSize());
EXPECT_GT(token, GetToken());
offset = allocator_->Alloc(kBufferSize);
ASSERT_NE(FencedAllocator::kInvalidOffset, offset);
EXPECT_LE(token, GetToken());
allocator_->Free(offset);
EXPECT_EQ(kBufferSize, allocator_->GetLargestFreeOrPendingSize());
EXPECT_EQ(kBufferSize, allocator_->GetLargestFreeSize());
}
class FencedAllocatorWrapperTest : public BaseFencedAllocatorTest {
protected:
void SetUp() override {
BaseFencedAllocatorTest::SetUp();
buffer_.reset(static_cast<char*>(base::AlignedAlloc(
kBufferSize, kAllocAlignment)));
allocator_ = std::make_unique<FencedAllocatorWrapper>(
kBufferSize, helper_.get(), buffer_.get());
}
void TearDown() override {
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(allocator_->CheckConsistency());
BaseFencedAllocatorTest::TearDown();
}
std::unique_ptr<char, base::AlignedFreeDeleter> buffer_;
std::unique_ptr<FencedAllocatorWrapper> allocator_;
};
TEST_F(FencedAllocatorWrapperTest, TestBasic) {
allocator_->CheckConsistency();
const unsigned int kSize = 16;
void* pointer = allocator_->Alloc(kSize);
ASSERT_TRUE(pointer);
EXPECT_LE(buffer_.get(), static_cast<char *>(pointer));
EXPECT_GE(kBufferSize, static_cast<char *>(pointer) - buffer_.get() + kSize);
EXPECT_TRUE(allocator_->CheckConsistency());
allocator_->Free(pointer);
EXPECT_TRUE(allocator_->CheckConsistency());
char* pointer_char = allocator_->AllocTyped<char>(kSize);
ASSERT_TRUE(pointer_char);
EXPECT_LE(buffer_.get(), pointer_char);
UNSAFE_TODO(EXPECT_GE(buffer_.get() + kBufferSize, pointer_char + kSize));
allocator_->Free(pointer_char);
EXPECT_TRUE(allocator_->CheckConsistency());
unsigned int* pointer_uint = allocator_->AllocTyped<unsigned int>(kSize);
ASSERT_TRUE(pointer_uint);
EXPECT_LE(buffer_.get(), reinterpret_cast<char *>(pointer_uint));
UNSAFE_TODO(EXPECT_GE(buffer_.get() + kBufferSize,
reinterpret_cast<char*>(pointer_uint + kSize)));
EXPECT_EQ(kBufferSize - kSize * sizeof(*pointer_uint),
allocator_->GetLargestFreeSize());
allocator_->Free(pointer_uint);
}
TEST_F(FencedAllocatorWrapperTest, TestAllocZero) {
allocator_->CheckConsistency();
void* pointer = allocator_->Alloc(0);
ASSERT_FALSE(pointer);
EXPECT_TRUE(allocator_->CheckConsistency());
}
TEST_F(FencedAllocatorWrapperTest, TestAlignment) {
allocator_->CheckConsistency();
const unsigned int kSize1 = 75;
void* pointer1 = allocator_->Alloc(kSize1);
ASSERT_TRUE(pointer1);
EXPECT_TRUE(base::IsAligned(pointer1, kAllocAlignment));
EXPECT_TRUE(allocator_->CheckConsistency());
const unsigned int kSize2 = 43;
void* pointer2 = allocator_->Alloc(kSize2);
ASSERT_TRUE(pointer2);
EXPECT_TRUE(base::IsAligned(pointer2, kAllocAlignment));
EXPECT_TRUE(allocator_->CheckConsistency());
allocator_->Free(pointer2);
EXPECT_TRUE(allocator_->CheckConsistency());
allocator_->Free(pointer1);
EXPECT_TRUE(allocator_->CheckConsistency());
}
TEST_F(FencedAllocatorWrapperTest, TestOutOfMemory) {
allocator_->CheckConsistency();
const unsigned int kSize = 16;
const unsigned int kAllocCount = kBufferSize / kSize;
CHECK_EQ(kAllocCount * kSize, kBufferSize);
std::array<void*, kAllocCount> pointers;
for (unsigned int i = 0; i < kAllocCount; ++i) {
pointers[i] = allocator_->Alloc(kSize);
EXPECT_TRUE(pointers[i]);
EXPECT_TRUE(allocator_->CheckConsistency());
}
void* pointer_failed = allocator_->Alloc(kSize);
EXPECT_FALSE(pointer_failed);
EXPECT_TRUE(allocator_->CheckConsistency());
allocator_->Free(pointers[0]);
EXPECT_TRUE(allocator_->CheckConsistency());
pointers[0] = allocator_->Alloc(kSize/2);
EXPECT_TRUE(pointers[0]);
EXPECT_TRUE(allocator_->CheckConsistency());
pointer_failed = allocator_->Alloc(kSize);
EXPECT_FALSE(pointer_failed);
EXPECT_TRUE(allocator_->CheckConsistency());
for (unsigned int i = 0; i < kAllocCount; ++i) {
allocator_->Free(pointers[i]);
EXPECT_TRUE(allocator_->CheckConsistency());
}
}
TEST_F(FencedAllocatorWrapperTest, TestFreePendingToken) {
allocator_->CheckConsistency();
const unsigned int kSize = 16;
const unsigned int kAllocCount = kBufferSize / kSize;
CHECK_EQ(kAllocCount * kSize, kBufferSize);
std::array<void*, kAllocCount> pointers;
for (unsigned int i = 0; i < kAllocCount; ++i) {
pointers[i] = allocator_->Alloc(kSize);
EXPECT_TRUE(pointers[i]);
EXPECT_TRUE(allocator_->CheckConsistency());
}
void* pointer_failed = allocator_->Alloc(kSize);
EXPECT_FALSE(pointer_failed);
EXPECT_TRUE(allocator_->CheckConsistency());
int32_t token = helper_.get()->InsertToken();
allocator_->FreePendingToken(pointers[0], token);
EXPECT_TRUE(allocator_->CheckConsistency());
EXPECT_GT(token, GetToken());
pointers[0] = allocator_->Alloc(kSize);
EXPECT_TRUE(pointers[0]);
EXPECT_TRUE(allocator_->CheckConsistency());
EXPECT_LE(token, GetToken());
for (unsigned int i = 0; i < kAllocCount; ++i) {
allocator_->Free(pointers[i]);
EXPECT_TRUE(allocator_->CheckConsistency());
}
}
}