/* * Copyright 2014 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "src/gpu/GrTAllocator.h" #include "tests/Test.h" namespace { struct C { C() : fID(-1) { ++gInstCnt; } C(int id) : fID(id) { ++gInstCnt; } C(C&& c) : C(c.fID) {} C(const C& c) : C(c.fID) {} C& operator=(C&&) = default; C& operator=(const C&) = default; ~C() { --gInstCnt; } int fID; static int gInstCnt; }; int C::gInstCnt = 0; } // Checks that the allocator has the correct count, etc and that the element IDs are correct. // Then pops popCnt items and checks again. template static void check_allocator_helper(GrTAllocator* allocator, int cnt, int popCnt, skiatest::Reporter* reporter) { REPORTER_ASSERT(reporter, (0 == cnt) == allocator->empty()); REPORTER_ASSERT(reporter, cnt == allocator->count()); REPORTER_ASSERT(reporter, cnt == C::gInstCnt); int i = 0; for (const C& c : allocator->items()) { REPORTER_ASSERT(reporter, i == c.fID); REPORTER_ASSERT(reporter, allocator->item(i).fID == i); ++i; } REPORTER_ASSERT(reporter, i == cnt); if (cnt > 0) { REPORTER_ASSERT(reporter, cnt-1 == allocator->back().fID); } if (popCnt > 0) { for (int i = 0; i < popCnt; ++i) { allocator->pop_back(); } check_allocator_helper(allocator, cnt - popCnt, 0, reporter); } } template static void check_iterator_helper(GrTAllocator* allocator, const std::vector& expected, skiatest::Reporter* reporter) { const GrTAllocator* cAlloc = allocator; REPORTER_ASSERT(reporter, (size_t) allocator->count() == expected.size()); // Forward+const int i = 0; for (const C& c : cAlloc->items()) { REPORTER_ASSERT(reporter, (uintptr_t) &c == (uintptr_t) expected[i]); ++i; } REPORTER_ASSERT(reporter, (size_t) i == expected.size()); // Forward+non-const i = 0; for (C& c : allocator->items()) { REPORTER_ASSERT(reporter, (uintptr_t) &c == (uintptr_t) expected[i]); ++i; } REPORTER_ASSERT(reporter, (size_t) i == expected.size()); // Reverse+const i = (int) expected.size() - 1; for (const C& c : cAlloc->ritems()) { REPORTER_ASSERT(reporter, (uintptr_t) &c == (uintptr_t) expected[i]); --i; } REPORTER_ASSERT(reporter, i == -1); // Reverse+non-const i = (int) expected.size() - 1; for (C& c : allocator->ritems()) { REPORTER_ASSERT(reporter, (uintptr_t) &c == (uintptr_t) expected[i]); --i; } REPORTER_ASSERT(reporter, i == -1); // Also test random access for (int i = 0; i < allocator->count(); ++i) { REPORTER_ASSERT(reporter, (uintptr_t) &allocator->item(i) == (uintptr_t) expected[i]); REPORTER_ASSERT(reporter, (uintptr_t) &cAlloc->item(i) == (uintptr_t) expected[i]); } } // Adds cnt items to the allocator, tests the cnts and iterators, pops popCnt items and checks // again. Finally it resets the allocator and checks again. template static void check_allocator(GrTAllocator* allocator, int cnt, int popCnt, skiatest::Reporter* reporter) { enum ItemInitializer : int { kCopyCtor, kMoveCtor, kCopyAssign, kMoveAssign, kEmplace, }; static constexpr int kInitCount = (int) kEmplace + 1; SkASSERT(allocator); SkASSERT(allocator->empty()); std::vector items; for (int i = 0; i < cnt; ++i) { switch((ItemInitializer) (i % kInitCount)) { case kCopyCtor: allocator->push_back(C(i)); break; case kMoveCtor: allocator->push_back(std::move(C(i))); break; case kCopyAssign: allocator->push_back() = C(i); break; case kMoveAssign: allocator->push_back() = std::move(C(i)); break; case kEmplace: allocator->emplace_back(i); break; } items.push_back(&allocator->back()); } check_iterator_helper(allocator, items, reporter); check_allocator_helper(allocator, cnt, popCnt, reporter); allocator->reset(); check_iterator_helper(allocator, {}, reporter); check_allocator_helper(allocator, 0, 0, reporter); } template static void run_allocator_test(GrTAllocator* allocator, skiatest::Reporter* reporter) { check_allocator(allocator, 0, 0, reporter); check_allocator(allocator, 1, 1, reporter); check_allocator(allocator, 2, 2, reporter); check_allocator(allocator, 10, 1, reporter); check_allocator(allocator, 10, 5, reporter); check_allocator(allocator, 10, 10, reporter); check_allocator(allocator, 100, 10, reporter); } DEF_TEST(GrTAllocator, reporter) { // Test combinations of allocators with and without stack storage and with different block sizes GrTAllocator a1(1); run_allocator_test(&a1, reporter); GrTAllocator a2(2); run_allocator_test(&a2, reporter); GrTAllocator a5(5); run_allocator_test(&a5, reporter); GrTAllocator sa1; run_allocator_test(&sa1, reporter); GrTAllocator sa3; run_allocator_test(&sa3, reporter); GrTAllocator sa4; run_allocator_test(&sa4, reporter); }