Skip to content

Commit 189cf35

Browse files
committed
Add simple bech32 benchmarks
1 parent 686e97a commit 189cf35

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

src/Makefile.bench.include

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ bench_bench_bitcoin_SOURCES = \
2626
bench/mempool_eviction.cpp \
2727
bench/verify_script.cpp \
2828
bench/base58.cpp \
29+
bench/bech32.cpp \
2930
bench/lockedpool.cpp \
3031
bench/prevector.cpp
3132

src/bench/bech32.cpp

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
// Copyright (c) 2018 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>
6+
7+
#include <validation.h>
8+
#include <bech32.h>
9+
#include <utilstrencodings.h>
10+
11+
#include <vector>
12+
#include <string>
13+
14+
15+
static void Bech32Encode(benchmark::State& state)
16+
{
17+
std::vector<uint8_t> v = ParseHex("c97f5a67ec381b760aeaf67573bc164845ff39a3bb26a1cee401ac67243b48db");
18+
std::vector<unsigned char> tmp = {0};
19+
tmp.reserve(1 + 32 * 8 / 5);
20+
ConvertBits<8, 5, true>([&](unsigned char c) { tmp.push_back(c); }, v.begin(), v.end());
21+
while (state.KeepRunning()) {
22+
bech32::Encode("bc", tmp);
23+
}
24+
}
25+
26+
27+
static void Bech32Decode(benchmark::State& state)
28+
{
29+
std::string addr = "bc1qkallence7tjawwvy0dwt4twc62qjgaw8f4vlhyd006d99f09";
30+
std::vector<unsigned char> vch;
31+
while (state.KeepRunning()) {
32+
bech32::Decode(addr);
33+
}
34+
}
35+
36+
37+
BENCHMARK(Bech32Encode, 800 * 1000);
38+
BENCHMARK(Bech32Decode, 800 * 1000);

0 commit comments

Comments
 (0)