Files
carbon-lang/toolchain/lex/numeric_literal_benchmark.cpp
T
Jon Ross-PerkinsandChandler Carruth ec182fb00d Rename lexer dir to lex (#3179)
Continuing with #3070. Just a dir and file rename (only prefix change is
lexer_file_test). Everything in the lex dir should be marked as a move.

Note, I think this closes #3070. There may still be further cleanup
later, but the organizational changes suggested there are being
completed.

---------

Co-authored-by: Chandler Carruth <chandlerc@gmail.com>
2023-09-01 02:39:04 +00:00

53 lines
1.3 KiB
C++

// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#include <benchmark/benchmark.h>
#include "common/check.h"
#include "toolchain/diagnostics/null_diagnostics.h"
#include "toolchain/lex/numeric_literal.h"
namespace Carbon::Testing {
namespace {
using Lex::NumericLiteral;
static void BM_Lex_Float(benchmark::State& state) {
for (auto _ : state) {
CARBON_CHECK(NumericLiteral::Lex("0.000001"));
}
}
static void BM_Lex_Integer(benchmark::State& state) {
for (auto _ : state) {
CARBON_CHECK(NumericLiteral::Lex("1_234_567_890"));
}
}
static void BM_ComputeValue_Float(benchmark::State& state) {
auto val = NumericLiteral::Lex("0.000001");
CARBON_CHECK(val);
auto emitter = NullDiagnosticEmitter<const char*>();
for (auto _ : state) {
val->ComputeValue(emitter);
}
}
static void BM_ComputeValue_Integer(benchmark::State& state) {
auto val = NumericLiteral::Lex("1_234_567_890");
auto emitter = NullDiagnosticEmitter<const char*>();
CARBON_CHECK(val);
for (auto _ : state) {
val->ComputeValue(emitter);
}
}
BENCHMARK(BM_Lex_Float);
BENCHMARK(BM_Lex_Integer);
BENCHMARK(BM_ComputeValue_Float);
BENCHMARK(BM_ComputeValue_Integer);
} // namespace
} // namespace Carbon::Testing