mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-10-09 03:19:46 +00:00
Removes validation around pointer parameters. Bug: tint:1758 Change-Id: I3adc48f780fc8c6f5525f9ecc280e2a406069b49 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/112286 Reviewed-by: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
82 lines
2.7 KiB
C++
82 lines
2.7 KiB
C++
// 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/extension_bench.cc.tmpl
|
|
//
|
|
// Do not modify this file directly
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "src/tint/ast/extension.h"
|
|
|
|
#include <array>
|
|
|
|
#include "benchmark/benchmark.h"
|
|
|
|
namespace tint::ast {
|
|
namespace {
|
|
|
|
void ExtensionParser(::benchmark::State& state) {
|
|
std::array kStrings{
|
|
"chromium_disableuniformiccy_analysis",
|
|
"chromil3_disable_unifority_analss",
|
|
"chromium_disable_Vniformity_analysis",
|
|
"chromium_disable_uniformity_analysis",
|
|
"chromium_dis1ble_uniformity_analysis",
|
|
"chromium_qqisable_unifomity_anaJysis",
|
|
"chrollium_disable_uniformity_analysi77",
|
|
"chromippHm_experqqmetal_dp4a",
|
|
"chrmium_expecimntal_dp4",
|
|
"chrmiumGexpebimental_dp4a",
|
|
"chromium_experimental_dp4a",
|
|
"chromium_exverimentiil_dp4a",
|
|
"chro8ium_experimenWWal_dp4a",
|
|
"chromiMm_eperimxxntal_dp4a",
|
|
"chromium_expeggimeXtal_full_ptr_paraeters",
|
|
"chromium_expVrimental_full_ptr_puraXeer",
|
|
"chromium_experimental_full_ptr3parameters",
|
|
"chromium_experimental_full_ptr_parameters",
|
|
"chromium_experimentalEfull_ptr_parameters",
|
|
"chromium_experimentalfull_ptr_PPaTTameters",
|
|
"chromium_ddxperimental_fullptrxxparameters",
|
|
"c44romium_experimental_push_constant",
|
|
"chromium_experimental_pSSsVV_constant",
|
|
"chrom22Rm_experimental_pushRonstant",
|
|
"chromium_experimental_push_constant",
|
|
"chromium_exp9rimFntal_ush_constant",
|
|
"chrmium_experimental_push_constant",
|
|
"cOOromium_experiVeHtal_puh_conRRtant",
|
|
"y1",
|
|
"l77rrn6",
|
|
"4016",
|
|
"f16",
|
|
"5",
|
|
"u16",
|
|
"f",
|
|
};
|
|
for (auto _ : state) {
|
|
for (auto& str : kStrings) {
|
|
auto result = ParseExtension(str);
|
|
benchmark::DoNotOptimize(result);
|
|
}
|
|
}
|
|
}
|
|
|
|
BENCHMARK(ExtensionParser);
|
|
|
|
} // namespace
|
|
} // namespace tint::ast
|