1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
#include <benchmark/benchmark.h>
#include <cstdint>
#include "opentelemetry/nostd/span.h"
#include "opentelemetry/trace/span_id.h"
namespace
{
using opentelemetry::trace::SpanId;
constexpr uint8_t bytes[] = {1, 2, 3, 4, 5, 6, 7, 8};
void BM_SpanIdDefaultConstructor(benchmark::State &state)
{
while (state.KeepRunning())
{
benchmark::DoNotOptimize(SpanId());
}
}
BENCHMARK(BM_SpanIdDefaultConstructor);
void BM_SpanIdConstructor(benchmark::State &state)
{
while (state.KeepRunning())
{
benchmark::DoNotOptimize(SpanId(bytes));
}
}
BENCHMARK(BM_SpanIdConstructor);
void BM_SpanIdToLowerBase16(benchmark::State &state)
{
SpanId id(bytes);
char buf[SpanId::kSize * 2];
while (state.KeepRunning())
{
id.ToLowerBase16(buf);
benchmark::DoNotOptimize(buf);
}
}
BENCHMARK(BM_SpanIdToLowerBase16);
void BM_SpanIdIsValid(benchmark::State &state)
{
SpanId id(bytes);
while (state.KeepRunning())
{
benchmark::DoNotOptimize(id.IsValid());
}
}
BENCHMARK(BM_SpanIdIsValid);
} // namespace
BENCHMARK_MAIN();
|