Replace LocklessAllocator with new MemoryPool class

MemoryPool maintains a free list of pre-allocated entries stored in a
libcds MPMC Queue. In contrast to LocklessAllocator, it's a lot faster,
less (and less complex) code to maintain for us and it doesn't fail when
it's full.
This commit is contained in:
Lukas W
2018-04-15 22:21:25 +02:00
parent 1340c273c7
commit 1cd8e15942
15 changed files with 330 additions and 255 deletions

View File

@@ -17,6 +17,7 @@ ADD_EXECUTABLE(tests
src/core/AutomatableModelTest.cpp
src/core/ProjectVersionTest.cpp
src/core/RelativePathsTest.cpp
src/core/MemoryPoolTest.cpp
src/tracks/AutomationTrackTest.cpp
)

View File

@@ -0,0 +1,58 @@
/*
* MemoryPoolTest.cpp
*
* Copyright (c) 2018 Lukas W <lukaswhl/at/gmail.com>
*
* This file is part of LMMS - https://lmms.io
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program (see COPYING); if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
*/
#include "QTestSuite.h"
#include "MemoryPool.h"
#include <array>
#include <stack>
class MemoryPoolTest : QTestSuite
{
Q_OBJECT
private slots:
void MemoryPoolTests()
{
using T = std::array<char, 16>;
MemoryPool<T> pool(256);
std::stack<T*> ptrs;
for (int i=0; i < 256; i++) {
ptrs.push(pool.allocate_bounded());
QVERIFY(ptrs.top());
}
QCOMPARE(pool.allocate_bounded(), nullptr);
ptrs.push(pool.allocate());
QVERIFY(ptrs.top());
while (!ptrs.empty()) {
pool.deallocate(ptrs.top());
ptrs.pop();
}
}
} MemoryPoolTests;
#include "MemoryPoolTest.moc"