blob: 4fee9700ce7126015ac980a593b3a9c8ede165b1 [file] [log] [blame]
// 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/tint/sem/array_count.h"
TINT_INSTANTIATE_TYPEINFO(tint::sem::NamedOverrideArrayCount);
TINT_INSTANTIATE_TYPEINFO(tint::sem::UnnamedOverrideArrayCount);
namespace tint::sem {
NamedOverrideArrayCount::NamedOverrideArrayCount(const GlobalVariable* var)
: Base(static_cast<size_t>(TypeInfo::Of<NamedOverrideArrayCount>().full_hashcode)),
variable(var) {}
NamedOverrideArrayCount::~NamedOverrideArrayCount() = default;
bool NamedOverrideArrayCount::Equals(const UniqueNode& other) const {
if (auto* v = other.As<NamedOverrideArrayCount>()) {
return variable == v->variable;
}
return false;
}
std::string NamedOverrideArrayCount::FriendlyName(const SymbolTable& symbols) const {
return symbols.NameFor(variable->Declaration()->symbol);
}
type::ArrayCount* NamedOverrideArrayCount::Clone(type::CloneContext&) const {
TINT_ASSERT(Type, false && "Named override array count clone not available");
return nullptr;
}
UnnamedOverrideArrayCount::UnnamedOverrideArrayCount(const Expression* e)
: Base(static_cast<size_t>(TypeInfo::Of<UnnamedOverrideArrayCount>().full_hashcode)), expr(e) {}
UnnamedOverrideArrayCount::~UnnamedOverrideArrayCount() = default;
bool UnnamedOverrideArrayCount::Equals(const UniqueNode& other) const {
if (auto* v = other.As<UnnamedOverrideArrayCount>()) {
return expr == v->expr;
}
return false;
}
std::string UnnamedOverrideArrayCount::FriendlyName(const SymbolTable&) const {
return "[unnamed override-expression]";
}
type::ArrayCount* UnnamedOverrideArrayCount::Clone(type::CloneContext&) const {
TINT_ASSERT(Type, false && "Unnamed override array count clone not available");
return nullptr;
}
} // namespace tint::sem