Files
snmalloc/src/test/func/pool/pool.cc
2022-10-10 17:13:10 +01:00

242 lines
5.2 KiB
C++

#include <array>
#include <iostream>
#include <snmalloc/snmalloc.h>
#include <test/opt.h>
#include <test/setup.h>
#include <unordered_set>
using namespace snmalloc;
struct PoolAEntry : Pooled<PoolAEntry>
{
int field;
PoolAEntry() : field(1){};
};
using PoolA = Pool<PoolAEntry, Alloc::Config>;
struct PoolBEntry : Pooled<PoolBEntry>
{
int field;
PoolBEntry() : field(0){};
PoolBEntry(int f) : field(f){};
};
using PoolB = Pool<PoolBEntry, Alloc::Config>;
struct PoolLargeEntry : Pooled<PoolLargeEntry>
{
std::array<int, 2'000'000> payload;
PoolLargeEntry()
{
printf(".");
fflush(stdout);
payload[0] = 1;
printf("first %d\n", payload[0]);
payload[1'999'999] = 1;
printf("last %d\n", payload[1'999'999]);
};
};
using PoolLarge = Pool<PoolLargeEntry, Alloc::Config>;
template<bool order>
struct PoolSortEntry : Pooled<PoolSortEntry<order>>
{
int field;
PoolSortEntry(int f) : field(f){};
};
template<bool order>
using PoolSort = Pool<PoolSortEntry<order>, Alloc::Config>;
void test_alloc()
{
auto ptr = PoolA::acquire();
SNMALLOC_CHECK(ptr != nullptr);
// Pool allocations should not be visible to debug_check_empty.
snmalloc::debug_check_empty<Alloc::Config>();
PoolA::release(ptr);
}
void test_constructor()
{
auto ptr1 = PoolA::acquire();
SNMALLOC_CHECK(ptr1 != nullptr);
SNMALLOC_CHECK(ptr1->field == 1);
auto ptr2 = PoolB::acquire();
SNMALLOC_CHECK(ptr2 != nullptr);
SNMALLOC_CHECK(ptr2->field == 0);
auto ptr3 = PoolB::acquire(1);
SNMALLOC_CHECK(ptr3 != nullptr);
SNMALLOC_CHECK(ptr3->field == 1);
PoolA::release(ptr1);
PoolB::release(ptr2);
PoolB::release(ptr3);
}
void test_alloc_many()
{
constexpr size_t count = 16'000'000 / MIN_CHUNK_SIZE;
std::unordered_set<PoolAEntry*> allocated;
for (size_t i = 0; i < count; ++i)
{
auto ptr = PoolA::acquire();
SNMALLOC_CHECK(ptr != nullptr);
allocated.insert(ptr);
}
for (auto ptr : allocated)
{
PoolA::release(ptr);
}
}
void test_double_alloc()
{
auto ptr1 = PoolA::acquire();
SNMALLOC_CHECK(ptr1 != nullptr);
auto ptr2 = PoolA::acquire();
SNMALLOC_CHECK(ptr2 != nullptr);
SNMALLOC_CHECK(ptr1 != ptr2);
PoolA::release(ptr2);
auto ptr3 = PoolA::acquire();
SNMALLOC_CHECK(ptr2 == ptr3);
PoolA::release(ptr1);
PoolA::release(ptr3);
}
void test_different_alloc()
{
auto ptr1 = PoolA::acquire();
SNMALLOC_CHECK(ptr1 != nullptr);
PoolA::release(ptr1);
auto ptr2 = PoolB::acquire();
SNMALLOC_CHECK(ptr2 != nullptr);
SNMALLOC_CHECK(static_cast<void*>(ptr1) != static_cast<void*>(ptr2));
PoolB::release(ptr2);
}
void test_iterator()
{
PoolAEntry* before_iteration_ptr = PoolA::acquire();
PoolAEntry* ptr = nullptr;
while ((ptr = PoolA::iterate(ptr)) != nullptr)
{
ptr->field = 2;
}
SNMALLOC_CHECK(before_iteration_ptr->field == 2);
PoolAEntry* after_iteration_ptr = PoolA::acquire();
SNMALLOC_CHECK(after_iteration_ptr->field == 2);
PoolA::release(before_iteration_ptr);
PoolA::release(after_iteration_ptr);
}
void test_large()
{
printf(".");
fflush(stdout);
PoolLargeEntry* p = PoolLarge::acquire();
printf(".");
fflush(stdout);
PoolLarge::release(p);
printf(".");
fflush(stdout);
}
/**
* This test confirms that the pool is sorted consistently with
* respect to the iterator after a call to sort.
*/
template<bool order>
void test_sort()
{
auto position = [](PoolSortEntry<order>* ptr) {
size_t i = 0;
auto curr = PoolSort<order>::iterate();
while (ptr != curr)
{
curr = PoolSort<order>::iterate(curr);
++i;
}
return i;
};
// This test checks that `sort` puts the elements in the right order,
// so it is the same as if they had been allocated in that order.
auto a1 = PoolSort<order>::acquire(1);
auto a2 = PoolSort<order>::acquire(1);
auto position1 = position(a1);
auto position2 = position(a2);
// Release in either order.
if (order)
{
PoolSort<order>::release(a1);
PoolSort<order>::release(a2);
}
else
{
PoolSort<order>::release(a2);
PoolSort<order>::release(a1);
}
PoolSort<order>::sort();
auto b1 = PoolSort<order>::acquire(1);
auto b2 = PoolSort<order>::acquire(1);
SNMALLOC_CHECK(position1 == position(b1));
SNMALLOC_CHECK(position2 == position(b2));
PoolSort<order>::release(b1);
PoolSort<order>::release(b2);
}
int main(int argc, char** argv)
{
setup();
#ifdef USE_SYSTEMATIC_TESTING
opt::Opt opt(argc, argv);
size_t seed = opt.is<size_t>("--seed", 0);
Virtual::systematic_bump_ptr() += seed << 17;
#else
UNUSED(argc, argv);
#endif
test_alloc();
std::cout << "test_alloc passed" << std::endl;
test_constructor();
std::cout << "test_constructor passed" << std::endl;
test_alloc_many();
std::cout << "test_alloc_many passed" << std::endl;
test_double_alloc();
std::cout << "test_double_alloc passed" << std::endl;
test_different_alloc();
std::cout << "test_different_alloc passed" << std::endl;
test_iterator();
std::cout << "test_iterator passed" << std::endl;
test_large();
std::cout << "test_large passed" << std::endl;
test_sort<false>();
std::cout << "test_sort<false> passed" << std::endl;
test_sort<true>();
std::cout << "test_sort<true> passed" << std::endl;
return 0;
}