2018-11-10 17:52:21 -05:00
|
|
|
//
|
|
|
|
// Copyright(c) 2018 Gabi Melman.
|
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "benchmark/benchmark.h"
|
|
|
|
|
|
|
|
#include "spdlog/spdlog.h"
|
|
|
|
#include "spdlog/details/pattern_formatter.h"
|
|
|
|
|
|
|
|
void bench_scoped_pad(benchmark::State &state, size_t wrapped_size, spdlog::details::padding_info padinfo)
|
|
|
|
{
|
|
|
|
fmt::memory_buffer dest;
|
|
|
|
for (auto _ : state)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
spdlog::details::scoped_pad p(wrapped_size, padinfo, dest);
|
|
|
|
benchmark::DoNotOptimize(p);
|
|
|
|
}
|
2018-11-10 18:26:57 -05:00
|
|
|
// if(dest.size() != (padinfo.width_-wrapped_size))
|
|
|
|
// {
|
|
|
|
// printf("NOT GOOD wrapped_size=%zu\t padinfo.width= %zu\tdest = %zu\n", wrapped_size, padinfo.width_, dest.size());
|
|
|
|
// }
|
2018-11-10 17:52:21 -05:00
|
|
|
dest.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-10 18:26:57 -05:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2018-11-10 17:52:21 -05:00
|
|
|
using spdlog::details::padding_info;
|
|
|
|
std::vector<size_t> sizes = {0, 2, 4, 8, 16, 32, 64, 128};
|
|
|
|
|
2018-11-10 18:26:57 -05:00
|
|
|
for (auto size : sizes)
|
2018-11-10 17:52:21 -05:00
|
|
|
{
|
|
|
|
size_t wrapped_size = 8;
|
|
|
|
size_t padding_size = wrapped_size + size;
|
|
|
|
|
|
|
|
std::string title = "scoped_pad::left::" + std::to_string(size);
|
|
|
|
|
2018-11-10 18:26:57 -05:00
|
|
|
benchmark::RegisterBenchmark(title.c_str(), bench_scoped_pad, wrapped_size, padding_info(padding_size, padding_info::left));
|
2018-11-10 17:52:21 -05:00
|
|
|
|
|
|
|
title = "scoped_pad::right::" + std::to_string(size);
|
2018-11-10 18:26:57 -05:00
|
|
|
benchmark::RegisterBenchmark(title.c_str(), bench_scoped_pad, wrapped_size, padding_info(padding_size, padding_info::right));
|
2018-11-10 17:52:21 -05:00
|
|
|
|
|
|
|
title = "scoped_pad::center::" + std::to_string(size);
|
2018-11-10 18:26:57 -05:00
|
|
|
benchmark::RegisterBenchmark(title.c_str(), bench_scoped_pad, wrapped_size, padding_info(padding_size, padding_info::center));
|
2018-11-10 17:52:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
benchmark::Initialize(&argc, argv);
|
|
|
|
benchmark::RunSpecifiedBenchmarks();
|
|
|
|
}
|