mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-30 00:45:52 +00:00
This change validates that the operand types and result type of every binary operation is valid. * Added two unit tests which test all valid and invalid param combos. I also removed the old tests, many of which failed once I added this validation, and the rest are obviated by the new tests. * Fixed VertexPulling transform, as well as many tests, that were using invalid operand types for binary operations. Fixed: tint:354 Change-Id: Ia3f48384256993da61b341f17ba5583741011819 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/44341 Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Antonio Maiorano <amaiorano@google.com>
137 lines
3.4 KiB
C++
137 lines
3.4 KiB
C++
// Copyright 2020 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/type/type.h"
|
|
|
|
#include "src/type/access_control_type.h"
|
|
#include "src/type/alias_type.h"
|
|
#include "src/type/bool_type.h"
|
|
#include "src/type/f32_type.h"
|
|
#include "src/type/i32_type.h"
|
|
#include "src/type/matrix_type.h"
|
|
#include "src/type/pointer_type.h"
|
|
#include "src/type/sampler_type.h"
|
|
#include "src/type/texture_type.h"
|
|
#include "src/type/u32_type.h"
|
|
#include "src/type/vector_type.h"
|
|
|
|
TINT_INSTANTIATE_TYPEINFO(tint::type::Type);
|
|
|
|
namespace tint {
|
|
namespace type {
|
|
|
|
Type::Type() = default;
|
|
|
|
Type::Type(Type&&) = default;
|
|
|
|
Type::~Type() = default;
|
|
|
|
Type* Type::UnwrapPtrIfNeeded() {
|
|
if (auto* ptr = As<type::Pointer>()) {
|
|
return ptr->type();
|
|
}
|
|
return this;
|
|
}
|
|
|
|
Type* Type::UnwrapAliasIfNeeded() {
|
|
Type* unwrapped = this;
|
|
while (auto* ptr = unwrapped->As<type::Alias>()) {
|
|
unwrapped = ptr->type();
|
|
}
|
|
return unwrapped;
|
|
}
|
|
|
|
Type* Type::UnwrapIfNeeded() {
|
|
auto* where = this;
|
|
while (true) {
|
|
if (auto* alias = where->As<type::Alias>()) {
|
|
where = alias->type();
|
|
} else if (auto* access = where->As<type::AccessControl>()) {
|
|
where = access->type();
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
return where;
|
|
}
|
|
|
|
Type* Type::UnwrapAll() {
|
|
return UnwrapIfNeeded()->UnwrapPtrIfNeeded()->UnwrapIfNeeded();
|
|
}
|
|
|
|
bool Type::is_scalar() const {
|
|
return IsAnyOf<F32, U32, I32, Bool>();
|
|
}
|
|
|
|
bool Type::is_float_scalar() const {
|
|
return Is<F32>();
|
|
}
|
|
|
|
bool Type::is_float_matrix() const {
|
|
return Is<Matrix>(
|
|
[](const Matrix* m) { return m->type()->is_float_scalar(); });
|
|
}
|
|
|
|
bool Type::is_float_vector() const {
|
|
return Is<Vector>(
|
|
[](const Vector* v) { return v->type()->is_float_scalar(); });
|
|
}
|
|
|
|
bool Type::is_float_scalar_or_vector() const {
|
|
return is_float_scalar() || is_float_vector();
|
|
}
|
|
|
|
bool Type::is_float_scalar_or_vector_or_matrix() const {
|
|
return is_float_scalar() || is_float_vector() || is_float_matrix();
|
|
}
|
|
|
|
bool Type::is_integer_scalar() const {
|
|
return IsAnyOf<U32, I32>();
|
|
}
|
|
|
|
bool Type::is_unsigned_integer_vector() const {
|
|
return Is<Vector>([](const Vector* v) { return v->type()->Is<U32>(); });
|
|
}
|
|
|
|
bool Type::is_signed_integer_vector() const {
|
|
return Is<Vector>([](const Vector* v) { return v->type()->Is<I32>(); });
|
|
}
|
|
|
|
bool Type::is_unsigned_scalar_or_vector() const {
|
|
return Is<U32>() || is_unsigned_integer_vector();
|
|
}
|
|
|
|
bool Type::is_signed_scalar_or_vector() const {
|
|
return Is<I32>() || is_signed_integer_vector();
|
|
}
|
|
|
|
bool Type::is_integer_scalar_or_vector() const {
|
|
return is_unsigned_scalar_or_vector() || is_signed_scalar_or_vector();
|
|
}
|
|
|
|
bool Type::is_bool_vector() const {
|
|
return Is<Vector>([](const Vector* v) { return v->type()->Is<Bool>(); });
|
|
}
|
|
|
|
bool Type::is_bool_scalar_or_vector() const {
|
|
return Is<Bool>() || is_bool_vector();
|
|
}
|
|
|
|
bool Type::is_handle() const {
|
|
return IsAnyOf<Sampler, Texture>();
|
|
}
|
|
|
|
} // namespace type
|
|
} // namespace tint
|