Bitcoin Core 31.99.0
P2P Digital Currency
lockedpool.cpp
Go to the documentation of this file.
1// Copyright (c) 2016-present The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <bench/bench.h>
7
8#include <cstddef>
9#include <cstdint>
10#include <util/byte_units.h>
11#include <vector>
12
13#define ASIZE 2048
14#define MSIZE 2048
15
17{
18 void *synth_base = reinterpret_cast<void*>(0x08000000);
19 const size_t synth_size{1_MiB};
20 Arena b(synth_base, synth_size, 16);
21
22 std::vector<void*> addr{ASIZE, nullptr};
23 uint32_t s = 0x12345678;
24 bench.run([&] {
25 int idx = s & (addr.size() - 1);
26 if (s & 0x80000000) {
27 b.free(addr[idx]);
28 addr[idx] = nullptr;
29 } else if (!addr[idx]) {
30 addr[idx] = b.alloc((s >> 16) & (MSIZE - 1));
31 }
32 bool lsb = s & 1;
33 s >>= 1;
34 if (lsb)
35 s ^= 0xf00f00f0; // LFSR period 0xf7ffffe0
36 });
37 for (void *ptr: addr)
38 b.free(ptr);
39 addr.clear();
40}
41
#define ASIZE
Definition: lockedpool.cpp:13
#define MSIZE
Definition: lockedpool.cpp:14
BENCHMARK(BenchLockedPool)
static void BenchLockedPool(benchmark::Bench &bench)
Definition: lockedpool.cpp:16
void * alloc(size_t size)
Allocate size bytes from this arena.
Definition: lockedpool.cpp:50
void free(void *ptr)
Free a previously allocated chunk of memory.
Definition: lockedpool.cpp:86
Main entry point to nanobench's benchmarking facility.
Definition: nanobench.h:633
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Definition: nanobench.h:1292