a6926b065d
5fbf7c4
fix nits: variable naming, typos (Martin Ankerl)1e0ee90
Use best-fit strategy in Arena, now O(log(n)) instead O(n) (Martin Ankerl) Pull request description: This replaces the first-fit algorithm used in the Arena with a best-fit. According to "Dynamic Storage Allocation: A Survey and Critical Review", Wilson et. al. 1995, http://www.scs.stanford.edu/14wi-cs140/sched/readings/wilson.pdf, both startegies work well in practice. The advantage of using best-fit is that we can switch the O(n) allocation to O(log(n)). Additionally, some previously O(log(n)) operations are now O(1) operations by using hash maps. The end effect is that the benchmark runs about 2.5 times faster on my machine: # Benchmark, evals, iterations, total, min, max, median old: BenchLockedPool, 5, 530, 5.25749, 0.00196938, 0.00199755, 0.00198172 new: BenchLockedPool, 5, 1300, 5.11313, 0.000781493, 0.000793314, 0.00078606 I've run all unit tests and benchmarks, and increased the number of iterations so that BenchLockedPool takes about 5 seconds again. Tree-SHA512: 6551e384671f93f10c60df530a29a1954bd265cc305411f665a8756525e5afe2873a8032c797d00b6e8c07e16d9827465d0b662875433147381474a44119ccce
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
// Copyright (c) 2016-2017 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <bench/bench.h>
|
|
|
|
#include <support/lockedpool.h>
|
|
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
#define ASIZE 2048
|
|
#define BITER 5000
|
|
#define MSIZE 2048
|
|
|
|
static void BenchLockedPool(benchmark::State& state)
|
|
{
|
|
void *synth_base = reinterpret_cast<void*>(0x08000000);
|
|
const size_t synth_size = 1024*1024;
|
|
Arena b(synth_base, synth_size, 16);
|
|
|
|
std::vector<void*> addr;
|
|
for (int x=0; x<ASIZE; ++x)
|
|
addr.push_back(nullptr);
|
|
uint32_t s = 0x12345678;
|
|
while (state.KeepRunning()) {
|
|
for (int x=0; x<BITER; ++x) {
|
|
int idx = s & (addr.size()-1);
|
|
if (s & 0x80000000) {
|
|
b.free(addr[idx]);
|
|
addr[idx] = nullptr;
|
|
} else if(!addr[idx]) {
|
|
addr[idx] = b.alloc((s >> 16) & (MSIZE-1));
|
|
}
|
|
bool lsb = s & 1;
|
|
s >>= 1;
|
|
if (lsb)
|
|
s ^= 0xf00f00f0; // LFSR period 0xf7ffffe0
|
|
}
|
|
}
|
|
for (void *ptr: addr)
|
|
b.free(ptr);
|
|
addr.clear();
|
|
}
|
|
|
|
BENCHMARK(BenchLockedPool, 1300);
|