blob: 46b4f936041d5e0fca5136881d1d57f3fb6a61fe [file] [log] [blame]
// Copyright 2022 The Tint Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
////////////////////////////////////////////////////////////////////////////////
// File generated by tools/src/cmd/gen
// using the template:
// src/tint/ast/access_bench.cc.tmpl
//
// Do not modify this file directly
////////////////////////////////////////////////////////////////////////////////
#include "src/tint/ast/access.h"
#include <array>
#include "benchmark/benchmark.h"
namespace tint::ast {
namespace {
void AccessParser(::benchmark::State& state) {
std::array kStrings{
"ccad", "3", "rVad", "read", "1ead",
"rqaJ", "rlla77", "reqqdppriHHe", "rv_wcit", "reabGwrte",
"read_write", "read_vriite", "re8d_wriWWe", "Meadxxrite", "wggte",
"VtX", "writ3", "write", "writE", "TTrPte",
"wxxidd",
};
for (auto _ : state) {
for (auto& str : kStrings) {
auto result = ParseAccess(str);
benchmark::DoNotOptimize(result);
}
}
}
BENCHMARK(AccessParser);
} // namespace
} // namespace tint::ast