mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-26 05:25:53 +00:00
Add a template file to generate parameter_usage.h and parameter_usage.cc when using tools/intrinsic-gen Bug: tint:832 Change-Id: I0ca4d092fdcda7d7846b968d43202f34450e516d Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/52644 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: David Neto <dneto@google.com>
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
// Copyright 2021 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.
|
|
|
|
#include "src/sem/call_target.h"
|
|
|
|
#include "src/symbol_table.h"
|
|
|
|
TINT_INSTANTIATE_TYPEINFO(tint::sem::CallTarget);
|
|
|
|
namespace tint {
|
|
namespace sem {
|
|
|
|
CallTarget::CallTarget(sem::Type* return_type, const ParameterList& parameters)
|
|
: return_type_(return_type), parameters_(parameters) {
|
|
TINT_ASSERT(return_type);
|
|
}
|
|
|
|
CallTarget::~CallTarget() = default;
|
|
|
|
int IndexOf(const ParameterList& parameters, ParameterUsage usage) {
|
|
for (size_t i = 0; i < parameters.size(); i++) {
|
|
if (parameters[i].usage == usage) {
|
|
return static_cast<int>(i);
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& out, Parameter parameter) {
|
|
out << "[type: " << parameter.type->FriendlyName(SymbolTable{ProgramID{}})
|
|
<< ", usage: " << str(parameter.usage) << "]";
|
|
return out;
|
|
}
|
|
|
|
} // namespace sem
|
|
} // namespace tint
|