2020-03-02 20:47:43 +00:00
|
|
|
// 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.
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
#include "src/resolver/resolver.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2021-03-01 20:01:39 +00:00
|
|
|
#include <algorithm>
|
2021-01-26 16:57:10 +00:00
|
|
|
#include <utility>
|
2020-04-07 12:57:42 +00:00
|
|
|
|
2021-04-19 19:16:12 +00:00
|
|
|
#include "src/ast/access_decoration.h"
|
2021-04-21 13:47:12 +00:00
|
|
|
#include "src/ast/alias.h"
|
|
|
|
#include "src/ast/array.h"
|
2020-04-07 12:47:23 +00:00
|
|
|
#include "src/ast/assignment_statement.h"
|
2020-09-22 22:07:13 +00:00
|
|
|
#include "src/ast/bitcast_expression.h"
|
2020-04-07 12:54:10 +00:00
|
|
|
#include "src/ast/break_statement.h"
|
2020-07-21 13:42:13 +00:00
|
|
|
#include "src/ast/call_statement.h"
|
2020-04-07 12:54:29 +00:00
|
|
|
#include "src/ast/continue_statement.h"
|
2021-04-21 13:47:12 +00:00
|
|
|
#include "src/ast/depth_texture.h"
|
2021-05-12 12:54:21 +00:00
|
|
|
#include "src/ast/disable_validation_decoration.h"
|
2020-11-30 23:30:58 +00:00
|
|
|
#include "src/ast/discard_statement.h"
|
|
|
|
#include "src/ast/fallthrough_statement.h"
|
2020-04-07 12:55:25 +00:00
|
|
|
#include "src/ast/if_statement.h"
|
2021-04-07 08:09:21 +00:00
|
|
|
#include "src/ast/internal_decoration.h"
|
2020-04-07 12:55:51 +00:00
|
|
|
#include "src/ast/loop_statement.h"
|
2021-04-21 13:47:12 +00:00
|
|
|
#include "src/ast/matrix.h"
|
2021-04-30 17:14:19 +00:00
|
|
|
#include "src/ast/override_decoration.h"
|
2021-04-21 13:47:12 +00:00
|
|
|
#include "src/ast/pointer.h"
|
2020-04-07 12:56:24 +00:00
|
|
|
#include "src/ast/return_statement.h"
|
2021-04-21 13:47:12 +00:00
|
|
|
#include "src/ast/sampled_texture.h"
|
|
|
|
#include "src/ast/sampler.h"
|
|
|
|
#include "src/ast/storage_texture.h"
|
2021-03-18 17:59:54 +00:00
|
|
|
#include "src/ast/struct_block_decoration.h"
|
2020-04-07 12:56:45 +00:00
|
|
|
#include "src/ast/switch_statement.h"
|
2021-05-05 09:09:41 +00:00
|
|
|
#include "src/ast/type_name.h"
|
2020-04-07 19:27:21 +00:00
|
|
|
#include "src/ast/unary_op_expression.h"
|
2020-04-07 12:57:12 +00:00
|
|
|
#include "src/ast/variable_decl_statement.h"
|
2021-04-21 13:47:12 +00:00
|
|
|
#include "src/ast/vector.h"
|
2021-04-06 20:41:07 +00:00
|
|
|
#include "src/ast/workgroup_decoration.h"
|
2021-04-16 19:07:51 +00:00
|
|
|
#include "src/sem/array.h"
|
|
|
|
#include "src/sem/call.h"
|
2021-04-21 13:47:12 +00:00
|
|
|
#include "src/sem/depth_texture_type.h"
|
2021-04-16 19:07:51 +00:00
|
|
|
#include "src/sem/function.h"
|
|
|
|
#include "src/sem/member_accessor_expression.h"
|
2021-04-20 16:09:21 +00:00
|
|
|
#include "src/sem/multisampled_texture_type.h"
|
2021-04-21 13:47:12 +00:00
|
|
|
#include "src/sem/pointer_type.h"
|
2021-05-18 10:28:48 +00:00
|
|
|
#include "src/sem/reference_type.h"
|
2021-04-21 13:47:12 +00:00
|
|
|
#include "src/sem/sampled_texture_type.h"
|
|
|
|
#include "src/sem/sampler_type.h"
|
2021-04-16 19:07:51 +00:00
|
|
|
#include "src/sem/statement.h"
|
2021-04-20 20:47:51 +00:00
|
|
|
#include "src/sem/storage_texture_type.h"
|
2021-04-16 19:07:51 +00:00
|
|
|
#include "src/sem/struct.h"
|
|
|
|
#include "src/sem/variable.h"
|
2021-04-13 13:32:33 +00:00
|
|
|
#include "src/utils/get_or_create.h"
|
2021-03-15 13:37:41 +00:00
|
|
|
#include "src/utils/math.h"
|
2021-05-19 16:11:04 +00:00
|
|
|
#include "src/utils/scoped_assignment.h"
|
2020-04-07 12:46:30 +00:00
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
namespace tint {
|
2021-03-09 15:08:48 +00:00
|
|
|
namespace resolver {
|
2021-02-08 19:53:42 +00:00
|
|
|
namespace {
|
|
|
|
|
2021-04-16 19:07:51 +00:00
|
|
|
using IntrinsicType = tint::sem::IntrinsicType;
|
2021-02-08 19:53:42 +00:00
|
|
|
|
2021-04-21 13:47:12 +00:00
|
|
|
bool IsValidStorageTextureDimension(ast::TextureDimension dim) {
|
2021-04-20 20:47:51 +00:00
|
|
|
switch (dim) {
|
2021-04-21 13:47:12 +00:00
|
|
|
case ast::TextureDimension::k1d:
|
|
|
|
case ast::TextureDimension::k2d:
|
|
|
|
case ast::TextureDimension::k2dArray:
|
|
|
|
case ast::TextureDimension::k3d:
|
2021-04-20 20:47:51 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-21 13:47:12 +00:00
|
|
|
bool IsValidStorageTextureImageFormat(ast::ImageFormat format) {
|
2021-04-20 20:47:51 +00:00
|
|
|
switch (format) {
|
2021-04-21 13:47:12 +00:00
|
|
|
case ast::ImageFormat::kR32Uint:
|
|
|
|
case ast::ImageFormat::kR32Sint:
|
|
|
|
case ast::ImageFormat::kR32Float:
|
|
|
|
case ast::ImageFormat::kRg32Uint:
|
|
|
|
case ast::ImageFormat::kRg32Sint:
|
|
|
|
case ast::ImageFormat::kRg32Float:
|
|
|
|
case ast::ImageFormat::kRgba8Unorm:
|
|
|
|
case ast::ImageFormat::kRgba8Snorm:
|
|
|
|
case ast::ImageFormat::kRgba8Uint:
|
|
|
|
case ast::ImageFormat::kRgba8Sint:
|
|
|
|
case ast::ImageFormat::kRgba16Uint:
|
|
|
|
case ast::ImageFormat::kRgba16Sint:
|
|
|
|
case ast::ImageFormat::kRgba16Float:
|
|
|
|
case ast::ImageFormat::kRgba32Uint:
|
|
|
|
case ast::ImageFormat::kRgba32Sint:
|
|
|
|
case ast::ImageFormat::kRgba32Float:
|
2021-04-20 20:47:51 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-12 12:54:21 +00:00
|
|
|
/// @returns true if the decoration list contains a
|
|
|
|
/// ast::DisableValidationDecoration with the validation mode equal to
|
|
|
|
/// `validation`
|
|
|
|
bool IsValidationDisabled(const ast::DecorationList& decorations,
|
|
|
|
ast::DisabledValidation validation) {
|
|
|
|
for (auto* decoration : decorations) {
|
|
|
|
if (auto* dv = decoration->As<ast::DisableValidationDecoration>()) {
|
|
|
|
if (dv->Validation() == validation) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-02-08 19:53:42 +00:00
|
|
|
} // namespace
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
Resolver::Resolver(ProgramBuilder* builder)
|
2021-05-06 16:04:03 +00:00
|
|
|
: builder_(builder),
|
|
|
|
diagnostics_(builder->Diagnostics()),
|
|
|
|
intrinsic_table_(IntrinsicTable::Create()) {}
|
2021-01-25 18:14:08 +00:00
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
Resolver::~Resolver() = default;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
void Resolver::set_referenced_from_function_if_needed(VariableInfo* var,
|
|
|
|
bool local) {
|
2020-06-22 20:52:24 +00:00
|
|
|
if (current_function_ == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
2021-02-03 17:51:09 +00:00
|
|
|
if (var->storage_class == ast::StorageClass::kNone ||
|
|
|
|
var->storage_class == ast::StorageClass::kFunction) {
|
2020-06-22 20:52:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-17 13:10:49 +00:00
|
|
|
current_function_->referenced_module_vars.add(var);
|
2020-12-08 21:07:24 +00:00
|
|
|
if (local) {
|
2021-02-17 13:10:49 +00:00
|
|
|
current_function_->local_referenced_module_vars.add(var);
|
2020-12-08 21:07:24 +00:00
|
|
|
}
|
2020-06-22 20:52:24 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::Resolve() {
|
2021-05-05 09:09:41 +00:00
|
|
|
if (builder_->Diagnostics().contains_errors()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool result = ResolveInternal();
|
2021-02-03 17:51:09 +00:00
|
|
|
|
2021-05-06 16:04:03 +00:00
|
|
|
if (!result && !diagnostics_.contains_errors()) {
|
2021-05-05 09:09:41 +00:00
|
|
|
TINT_ICE(diagnostics_) << "resolving failed, but no error was raised";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-02-03 17:51:09 +00:00
|
|
|
// Even if resolving failed, create all the semantic nodes for information we
|
|
|
|
// did generate.
|
|
|
|
CreateSemanticNodes();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-03-18 16:39:54 +00:00
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl.html#storable-types
|
2021-04-28 12:38:13 +00:00
|
|
|
bool Resolver::IsStorable(const sem::Type* type) {
|
2021-04-19 22:51:23 +00:00
|
|
|
if (type->is_scalar() || type->Is<sem::Vector>() || type->Is<sem::Matrix>()) {
|
2021-03-15 10:43:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
2021-05-07 20:58:34 +00:00
|
|
|
if (auto* arr = type->As<sem::Array>()) {
|
|
|
|
return IsStorable(arr->ElemType());
|
2021-03-15 10:43:11 +00:00
|
|
|
}
|
2021-05-07 14:49:34 +00:00
|
|
|
if (auto* str = type->As<sem::Struct>()) {
|
|
|
|
for (const auto* member : str->Members()) {
|
|
|
|
if (!IsStorable(member->Type())) {
|
|
|
|
return false;
|
2021-03-15 10:43:11 +00:00
|
|
|
}
|
|
|
|
}
|
2021-05-07 14:49:34 +00:00
|
|
|
return true;
|
2021-03-15 10:43:11 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:46:24 +00:00
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl.html#host-shareable-types
|
2021-04-28 12:38:13 +00:00
|
|
|
bool Resolver::IsHostShareable(const sem::Type* type) {
|
2021-04-19 22:51:23 +00:00
|
|
|
if (type->IsAnyOf<sem::I32, sem::U32, sem::F32>()) {
|
2021-03-18 20:46:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
2021-04-19 22:51:23 +00:00
|
|
|
if (auto* vec = type->As<sem::Vector>()) {
|
2021-03-18 21:03:24 +00:00
|
|
|
return IsHostShareable(vec->type());
|
2021-03-18 20:46:24 +00:00
|
|
|
}
|
2021-04-19 22:51:23 +00:00
|
|
|
if (auto* mat = type->As<sem::Matrix>()) {
|
2021-03-18 21:03:24 +00:00
|
|
|
return IsHostShareable(mat->type());
|
2021-03-18 20:46:24 +00:00
|
|
|
}
|
2021-05-07 20:58:34 +00:00
|
|
|
if (auto* arr = type->As<sem::Array>()) {
|
|
|
|
return IsHostShareable(arr->ElemType());
|
2021-03-18 20:46:24 +00:00
|
|
|
}
|
2021-05-07 14:49:34 +00:00
|
|
|
if (auto* str = type->As<sem::Struct>()) {
|
|
|
|
for (auto* member : str->Members()) {
|
2021-05-05 09:09:41 +00:00
|
|
|
if (!IsHostShareable(member->Type())) {
|
2021-03-18 20:46:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::ResolveInternal() {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(&builder_->AST());
|
|
|
|
|
2021-03-19 18:45:30 +00:00
|
|
|
// Process everything else in the order they appear in the module. This is
|
|
|
|
// necessary for validation of use-before-declaration.
|
|
|
|
for (auto* decl : builder_->AST().GlobalDeclarations()) {
|
2021-05-05 09:09:41 +00:00
|
|
|
if (auto* ty = decl->As<ast::NamedType>()) {
|
2021-05-20 08:44:57 +00:00
|
|
|
Mark(ty);
|
|
|
|
if (!NamedType(ty)) {
|
2021-04-19 19:16:12 +00:00
|
|
|
return false;
|
2021-03-19 18:45:30 +00:00
|
|
|
}
|
|
|
|
} else if (auto* func = decl->As<ast::Function>()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(func);
|
2021-03-19 18:45:30 +00:00
|
|
|
if (!Function(func)) {
|
2020-06-15 20:55:09 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-03-19 18:45:30 +00:00
|
|
|
} else if (auto* var = decl->As<ast::Variable>()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(var);
|
2021-04-06 20:18:57 +00:00
|
|
|
if (!GlobalVariable(var)) {
|
2021-03-19 18:45:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-04-16 01:15:43 +00:00
|
|
|
} else {
|
|
|
|
TINT_UNREACHABLE(diagnostics_)
|
|
|
|
<< "unhandled global declaration: " << decl->TypeInfo().name;
|
|
|
|
return false;
|
2020-04-06 21:07:41 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-19 18:45:30 +00:00
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
bool result = true;
|
|
|
|
|
2021-04-19 19:16:12 +00:00
|
|
|
for (auto* node : builder_->ASTNodes().Objects()) {
|
|
|
|
if (marked_.count(node) == 0) {
|
2021-04-21 13:37:22 +00:00
|
|
|
if (node->IsAnyOf<ast::AccessDecoration, ast::StrideDecoration,
|
|
|
|
ast::Type>()) {
|
2021-04-20 18:11:51 +00:00
|
|
|
// TODO(crbug.com/tint/724) - Remove once tint:724 is complete.
|
|
|
|
// ast::AccessDecorations are generated by the WGSL parser, used to
|
|
|
|
// build sem::AccessControls and then leaked.
|
2021-05-07 20:58:34 +00:00
|
|
|
// ast::StrideDecoration are used to build a sem::Arrays, but
|
2021-04-20 18:11:51 +00:00
|
|
|
// multiple arrays of the same stride, size and element type are
|
|
|
|
// currently de-duplicated by the type manager, and we leak these
|
|
|
|
// decorations.
|
2021-04-21 13:37:22 +00:00
|
|
|
// ast::Types are being built, but not yet being handled. This is WIP.
|
2021-04-19 19:16:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
TINT_ICE(diagnostics_) << "AST node '" << node->TypeInfo().name
|
|
|
|
<< "' was not reached by the resolver\n"
|
2021-04-23 18:19:54 +00:00
|
|
|
<< "At: " << node->source() << "\n"
|
2021-04-29 20:57:55 +00:00
|
|
|
<< "Content: " << builder_->str(node) << "\n"
|
|
|
|
<< "Pointer: " << node;
|
2021-05-05 09:09:41 +00:00
|
|
|
result = false;
|
2021-04-19 19:16:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
return result;
|
2021-04-19 19:16:12 +00:00
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
sem::Type* Resolver::Type(const ast::Type* ty) {
|
2021-04-21 13:47:12 +00:00
|
|
|
Mark(ty);
|
2021-05-07 14:49:34 +00:00
|
|
|
auto* s = [&]() -> sem::Type* {
|
2021-04-30 20:20:19 +00:00
|
|
|
if (ty->Is<ast::Void>()) {
|
|
|
|
return builder_->create<sem::Void>();
|
|
|
|
}
|
|
|
|
if (ty->Is<ast::Bool>()) {
|
|
|
|
return builder_->create<sem::Bool>();
|
|
|
|
}
|
|
|
|
if (ty->Is<ast::I32>()) {
|
|
|
|
return builder_->create<sem::I32>();
|
|
|
|
}
|
|
|
|
if (ty->Is<ast::U32>()) {
|
|
|
|
return builder_->create<sem::U32>();
|
|
|
|
}
|
|
|
|
if (ty->Is<ast::F32>()) {
|
|
|
|
return builder_->create<sem::F32>();
|
|
|
|
}
|
|
|
|
if (auto* t = ty->As<ast::AccessControl>()) {
|
2021-05-21 14:32:38 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_access_control_, t);
|
2021-04-30 20:20:19 +00:00
|
|
|
if (auto* el = Type(t->type())) {
|
2021-05-14 17:51:13 +00:00
|
|
|
return el;
|
2021-04-30 20:20:19 +00:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (auto* t = ty->As<ast::Vector>()) {
|
|
|
|
if (auto* el = Type(t->type())) {
|
|
|
|
return builder_->create<sem::Vector>(const_cast<sem::Type*>(el),
|
|
|
|
t->size());
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (auto* t = ty->As<ast::Matrix>()) {
|
|
|
|
if (auto* el = Type(t->type())) {
|
2021-05-05 16:48:32 +00:00
|
|
|
auto* column_type = builder_->create<sem::Vector>(
|
|
|
|
const_cast<sem::Type*>(el), t->rows());
|
|
|
|
return builder_->create<sem::Matrix>(column_type, t->columns());
|
2021-04-30 20:20:19 +00:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (auto* t = ty->As<ast::Array>()) {
|
2021-05-07 20:58:34 +00:00
|
|
|
return Array(t);
|
2021-04-30 20:20:19 +00:00
|
|
|
}
|
|
|
|
if (auto* t = ty->As<ast::Pointer>()) {
|
|
|
|
if (auto* el = Type(t->type())) {
|
|
|
|
return builder_->create<sem::Pointer>(const_cast<sem::Type*>(el),
|
|
|
|
t->storage_class());
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (auto* t = ty->As<ast::Sampler>()) {
|
|
|
|
return builder_->create<sem::Sampler>(t->kind());
|
|
|
|
}
|
|
|
|
if (auto* t = ty->As<ast::SampledTexture>()) {
|
|
|
|
if (auto* el = Type(t->type())) {
|
|
|
|
return builder_->create<sem::SampledTexture>(
|
|
|
|
t->dim(), const_cast<sem::Type*>(el));
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (auto* t = ty->As<ast::MultisampledTexture>()) {
|
|
|
|
if (auto* el = Type(t->type())) {
|
|
|
|
return builder_->create<sem::MultisampledTexture>(
|
|
|
|
t->dim(), const_cast<sem::Type*>(el));
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
if (auto* t = ty->As<ast::DepthTexture>()) {
|
|
|
|
return builder_->create<sem::DepthTexture>(t->dim());
|
|
|
|
}
|
|
|
|
if (auto* t = ty->As<ast::StorageTexture>()) {
|
|
|
|
if (auto* el = Type(t->type())) {
|
2021-05-21 14:32:38 +00:00
|
|
|
if (!current_access_control_) {
|
|
|
|
diagnostics_.add_error("storage textures must have access control",
|
|
|
|
t->source());
|
|
|
|
return nullptr;
|
2021-05-14 17:51:13 +00:00
|
|
|
}
|
2021-04-30 20:20:19 +00:00
|
|
|
return builder_->create<sem::StorageTexture>(
|
2021-05-21 14:32:38 +00:00
|
|
|
t->dim(), t->image_format(),
|
|
|
|
current_access_control_->access_control(),
|
|
|
|
const_cast<sem::Type*>(el));
|
2021-04-30 20:20:19 +00:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-05-06 08:20:52 +00:00
|
|
|
if (ty->As<ast::ExternalTexture>()) {
|
2021-05-05 18:00:52 +00:00
|
|
|
return builder_->create<sem::ExternalTexture>();
|
|
|
|
}
|
2021-05-05 09:09:41 +00:00
|
|
|
if (auto* t = ty->As<ast::TypeName>()) {
|
2021-05-20 08:44:57 +00:00
|
|
|
auto it = named_type_info_.find(t->name());
|
|
|
|
if (it == named_type_info_.end()) {
|
2021-05-05 09:09:41 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"unknown type '" + builder_->Symbols().NameFor(t->name()) + "'",
|
|
|
|
t->source());
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-05-20 08:44:57 +00:00
|
|
|
return it->second.sem;
|
2021-05-05 09:09:41 +00:00
|
|
|
}
|
2021-04-30 20:20:19 +00:00
|
|
|
TINT_UNREACHABLE(diagnostics_)
|
|
|
|
<< "Unhandled ast::Type: " << ty->TypeInfo().name;
|
|
|
|
return nullptr;
|
|
|
|
}();
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
if (s) {
|
|
|
|
builder_->Sem().Add(ty, s);
|
2021-04-21 13:47:12 +00:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2021-05-12 10:41:21 +00:00
|
|
|
Resolver::VariableInfo* Resolver::Variable(ast::Variable* var,
|
2021-05-18 10:28:48 +00:00
|
|
|
VariableKind kind) {
|
2021-05-12 10:41:21 +00:00
|
|
|
if (variable_to_info_.count(var)) {
|
|
|
|
TINT_ICE(diagnostics_) << "Variable "
|
|
|
|
<< builder_->Symbols().NameFor(var->symbol())
|
|
|
|
<< " already resolved";
|
|
|
|
return nullptr;
|
2021-04-16 01:15:43 +00:00
|
|
|
}
|
|
|
|
|
2021-05-12 10:41:21 +00:00
|
|
|
std::string type_name;
|
2021-05-18 10:28:48 +00:00
|
|
|
const sem::Type* storage_type = nullptr;
|
|
|
|
|
|
|
|
// If the variable has a declared type, resolve it.
|
2021-05-12 10:41:21 +00:00
|
|
|
if (auto* ty = var->type()) {
|
|
|
|
type_name = ty->FriendlyName(builder_->Symbols());
|
2021-05-18 10:28:48 +00:00
|
|
|
storage_type = Type(ty);
|
|
|
|
if (!storage_type) {
|
2021-05-12 10:41:21 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2021-05-05 09:09:41 +00:00
|
|
|
}
|
2021-05-12 10:41:21 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
std::string rhs_type_name;
|
|
|
|
const sem::Type* rhs_type = nullptr;
|
|
|
|
|
2021-05-12 10:41:21 +00:00
|
|
|
// Does the variable have a constructor?
|
|
|
|
if (auto* ctor = var->constructor()) {
|
|
|
|
Mark(var->constructor());
|
|
|
|
if (!Expression(var->constructor())) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch the constructor's type
|
2021-05-18 10:28:48 +00:00
|
|
|
rhs_type_name = TypeNameOf(ctor);
|
|
|
|
rhs_type = TypeOf(ctor);
|
2021-05-12 10:41:21 +00:00
|
|
|
if (!rhs_type) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the variable has no declared type, infer it from the RHS
|
2021-05-18 10:28:48 +00:00
|
|
|
if (!storage_type) {
|
|
|
|
type_name = rhs_type_name;
|
|
|
|
storage_type = rhs_type->UnwrapRef(); // Implicit load of RHS
|
2021-05-12 10:41:21 +00:00
|
|
|
}
|
2021-05-18 10:28:48 +00:00
|
|
|
} else if (var->is_const() && kind != VariableKind::kParameter &&
|
2021-05-12 10:41:21 +00:00
|
|
|
!ast::HasDecoration<ast::OverrideDecoration>(var->decorations())) {
|
|
|
|
diagnostics_.add_error("let declarations must have initializers",
|
|
|
|
var->source());
|
2021-05-05 09:09:41 +00:00
|
|
|
return nullptr;
|
2021-04-28 13:50:43 +00:00
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
if (!storage_type) {
|
|
|
|
TINT_ICE(diagnostics_)
|
|
|
|
<< "failed to determine storage type for variable '" +
|
|
|
|
builder_->Symbols().NameFor(var->symbol()) + "'\n"
|
|
|
|
<< "Source: " << var->source();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto storage_class = var->declared_storage_class();
|
|
|
|
if (storage_class == ast::StorageClass::kNone) {
|
|
|
|
if (storage_type->UnwrapRef()->is_handle()) {
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#module-scope-variables
|
|
|
|
// If the store type is a texture type or a sampler type, then the
|
|
|
|
// variable declaration must not have a storage class decoration. The
|
|
|
|
// storage class will always be handle.
|
|
|
|
storage_class = ast::StorageClass::kUniformConstant;
|
|
|
|
} else if (kind == VariableKind::kLocal && !var->is_const()) {
|
|
|
|
storage_class = ast::StorageClass::kFunction;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* type = storage_type;
|
|
|
|
if (!var->is_const()) {
|
|
|
|
// Variable declaration. Unlike `let`, `var` has storage.
|
|
|
|
// Variables are always of a reference type to the declared storage type.
|
|
|
|
type = builder_->create<sem::Reference>(storage_type, storage_class);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rhs_type && !ValidateVariableConstructor(var, storage_type, type_name,
|
|
|
|
rhs_type, rhs_type_name)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-05-14 17:51:13 +00:00
|
|
|
// TODO(crbug.com/tint/802): Temporary while ast::AccessControl exits.
|
|
|
|
auto find_first_access_control =
|
2021-05-20 08:44:57 +00:00
|
|
|
[this](const ast::Type* ty) -> const ast::AccessControl* {
|
2021-05-14 20:05:43 +00:00
|
|
|
if (ty == nullptr) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-05-20 08:44:57 +00:00
|
|
|
if (const ast::AccessControl* ac = ty->As<ast::AccessControl>()) {
|
2021-05-14 17:51:13 +00:00
|
|
|
return ac;
|
|
|
|
}
|
|
|
|
while (auto* tn = ty->As<ast::TypeName>()) {
|
2021-05-20 08:44:57 +00:00
|
|
|
auto it = named_type_info_.find(tn->name());
|
|
|
|
if (it == named_type_info_.end()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
auto* alias = it->second.ast->As<ast::Alias>();
|
|
|
|
if (!alias) {
|
2021-05-14 20:05:43 +00:00
|
|
|
break;
|
|
|
|
}
|
2021-05-20 08:44:57 +00:00
|
|
|
ty = alias->type();
|
2021-05-14 20:05:43 +00:00
|
|
|
if (auto* ac = ty->As<ast::AccessControl>()) {
|
2021-05-14 17:51:13 +00:00
|
|
|
return ac;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
};
|
|
|
|
|
2021-05-21 14:32:38 +00:00
|
|
|
auto* access_control = find_first_access_control(var->type());
|
2021-05-14 17:51:13 +00:00
|
|
|
auto* info = variable_infos_.Create(var, const_cast<sem::Type*>(type),
|
2021-05-18 10:28:48 +00:00
|
|
|
type_name, storage_class, access_control);
|
2021-04-16 01:15:43 +00:00
|
|
|
variable_to_info_.emplace(var, info);
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
bool Resolver::ValidateVariableConstructor(const ast::Variable* var,
|
|
|
|
const sem::Type* storage_type,
|
|
|
|
const std::string& type_name,
|
|
|
|
const sem::Type* rhs_type,
|
|
|
|
const std::string& rhs_type_name) {
|
|
|
|
auto* value_type = rhs_type->UnwrapRef(); // Implicit load of RHS
|
|
|
|
|
|
|
|
// RHS needs to be of a storable type
|
|
|
|
if (!var->is_const() && !IsStorable(value_type)) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"'" + rhs_type_name + "' is not storable for assignment",
|
|
|
|
var->constructor()->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Value type has to match storage type
|
2021-05-18 15:26:40 +00:00
|
|
|
if (storage_type != value_type) {
|
2021-05-18 10:28:48 +00:00
|
|
|
std::string decl = var->is_const() ? "let" : "var";
|
|
|
|
diagnostics_.add_error("cannot initialize " + decl + " of type '" +
|
|
|
|
type_name + "' with value of type '" +
|
|
|
|
rhs_type_name + "'",
|
|
|
|
var->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-06 20:18:57 +00:00
|
|
|
bool Resolver::GlobalVariable(ast::Variable* var) {
|
|
|
|
if (variable_stack_.has(var->symbol())) {
|
|
|
|
diagnostics_.add_error("v-0011",
|
|
|
|
"redeclared global identifier '" +
|
|
|
|
builder_->Symbols().NameFor(var->symbol()) + "'",
|
|
|
|
var->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* info = Variable(var, VariableKind::kGlobal);
|
2021-04-16 01:15:43 +00:00
|
|
|
if (!info) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-06 20:18:57 +00:00
|
|
|
variable_stack_.set_global(var->symbol(), info);
|
|
|
|
|
|
|
|
if (!var->is_const() && info->storage_class == ast::StorageClass::kNone) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0022", "global variables must have a storage class", var->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (var->is_const() && !(info->storage_class == ast::StorageClass::kNone)) {
|
|
|
|
diagnostics_.add_error("v-global01",
|
|
|
|
"global constants shouldn't have a storage class",
|
|
|
|
var->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto* deco : var->decorations()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(deco);
|
2021-05-13 20:32:32 +00:00
|
|
|
|
|
|
|
if (auto* override_deco = deco->As<ast::OverrideDecoration>()) {
|
|
|
|
// Track the constant IDs that are specified in the shader.
|
|
|
|
if (override_deco->HasValue()) {
|
|
|
|
constant_ids_.emplace(override_deco->value(), info);
|
|
|
|
}
|
|
|
|
}
|
2021-05-10 19:16:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (auto bp = var->binding_point()) {
|
|
|
|
info->binding_point = {bp.group->value(), bp.binding->value()};
|
2021-04-06 20:18:57 +00:00
|
|
|
}
|
|
|
|
|
2021-04-19 20:20:33 +00:00
|
|
|
if (!ValidateGlobalVariable(info)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
if (!ApplyStorageClassUsageToType(
|
|
|
|
info->storage_class, const_cast<sem::Type*>(info->type->UnwrapRef()),
|
|
|
|
var->source())) {
|
2021-04-06 20:18:57 +00:00
|
|
|
diagnostics_.add_note("while instantiating variable " +
|
|
|
|
builder_->Symbols().NameFor(var->symbol()),
|
|
|
|
var->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-19 20:20:33 +00:00
|
|
|
bool Resolver::ValidateGlobalVariable(const VariableInfo* info) {
|
2021-05-10 19:16:46 +00:00
|
|
|
for (auto* deco : info->declaration->decorations()) {
|
|
|
|
if (info->declaration->is_const()) {
|
2021-05-13 20:32:32 +00:00
|
|
|
if (auto* override_deco = deco->As<ast::OverrideDecoration>()) {
|
|
|
|
if (override_deco->HasValue()) {
|
|
|
|
uint32_t id = override_deco->value();
|
|
|
|
auto itr = constant_ids_.find(id);
|
|
|
|
if (itr != constant_ids_.end() && itr->second != info) {
|
|
|
|
diagnostics_.add_error("pipeline constant IDs must be unique",
|
|
|
|
deco->source());
|
|
|
|
diagnostics_.add_note("a pipeline constant with an ID of " +
|
|
|
|
std::to_string(id) +
|
|
|
|
" was previously declared "
|
|
|
|
"here:",
|
|
|
|
ast::GetDecoration<ast::OverrideDecoration>(
|
|
|
|
itr->second->declaration->decorations())
|
|
|
|
->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (id > 65535) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"pipeline constant IDs must be between 0 and 65535",
|
|
|
|
deco->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2021-05-10 19:16:46 +00:00
|
|
|
diagnostics_.add_error("decoration is not valid for constants",
|
|
|
|
deco->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!(deco->Is<ast::BindingDecoration>() ||
|
|
|
|
deco->Is<ast::BuiltinDecoration>() ||
|
|
|
|
deco->Is<ast::GroupDecoration>() ||
|
2021-05-12 13:30:51 +00:00
|
|
|
deco->Is<ast::LocationDecoration>() ||
|
|
|
|
deco->Is<ast::InternalDecoration>())) {
|
2021-05-10 19:16:46 +00:00
|
|
|
diagnostics_.add_error("decoration is not valid for variables",
|
|
|
|
deco->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto binding_point = info->declaration->binding_point();
|
|
|
|
switch (info->storage_class) {
|
|
|
|
case ast::StorageClass::kUniform:
|
|
|
|
case ast::StorageClass::kStorage:
|
|
|
|
case ast::StorageClass::kUniformConstant: {
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#resource-interface
|
|
|
|
// Each resource variable must be declared with both group and binding
|
|
|
|
// attributes.
|
|
|
|
if (!binding_point) {
|
|
|
|
diagnostics_.add_error(
|
2021-05-18 10:28:48 +00:00
|
|
|
"resource variables require [[group]] and [[binding]] "
|
|
|
|
"decorations",
|
2021-05-10 19:16:46 +00:00
|
|
|
info->declaration->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if (binding_point.binding || binding_point.group) {
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#attribute-binding
|
|
|
|
// Must only be applied to a resource variable
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"non-resource variables must not have [[group]] or [[binding]] "
|
|
|
|
"decorations",
|
|
|
|
info->declaration->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-21 17:55:12 +00:00
|
|
|
switch (info->storage_class) {
|
|
|
|
case ast::StorageClass::kStorage: {
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#variable-declaration
|
|
|
|
// Variables in the storage storage class and variables with a storage
|
|
|
|
// texture type must have an access attribute applied to the store type.
|
|
|
|
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#module-scope-variables
|
|
|
|
// A variable in the storage storage class is a storage buffer variable.
|
|
|
|
// Its store type must be a host-shareable structure type with block
|
|
|
|
// attribute, satisfying the storage class constraints.
|
|
|
|
|
2021-05-21 14:32:38 +00:00
|
|
|
auto* str = info->access_control
|
2021-05-18 10:28:48 +00:00
|
|
|
? info->type->UnwrapRef()->As<sem::Struct>()
|
2021-05-14 17:51:13 +00:00
|
|
|
: nullptr;
|
|
|
|
|
2021-04-21 17:55:12 +00:00
|
|
|
if (!str) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"variables declared in the <storage> storage class must be of an "
|
|
|
|
"[[access]] qualified structure type",
|
|
|
|
info->declaration->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!str->IsBlockDecorated()) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"structure used as a storage buffer must be declared with the "
|
|
|
|
"[[block]] decoration",
|
2021-05-07 14:49:34 +00:00
|
|
|
str->Declaration()->source());
|
2021-04-21 17:55:12 +00:00
|
|
|
if (info->declaration->source().range.begin.line) {
|
|
|
|
diagnostics_.add_note("structure used as storage buffer here",
|
|
|
|
info->declaration->source());
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
2021-04-19 20:20:33 +00:00
|
|
|
}
|
2021-04-21 17:55:12 +00:00
|
|
|
case ast::StorageClass::kUniform: {
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#module-scope-variables
|
|
|
|
// A variable in the uniform storage class is a uniform buffer variable.
|
|
|
|
// Its store type must be a host-shareable structure type with block
|
|
|
|
// attribute, satisfying the storage class constraints.
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* str = info->type->UnwrapRef()->As<sem::Struct>();
|
2021-04-21 17:55:12 +00:00
|
|
|
if (!str) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"variables declared in the <uniform> storage class must be of a "
|
|
|
|
"structure type",
|
|
|
|
info->declaration->source());
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-19 20:20:33 +00:00
|
|
|
|
2021-04-21 17:55:12 +00:00
|
|
|
if (!str->IsBlockDecorated()) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"structure used as a uniform buffer must be declared with the "
|
|
|
|
"[[block]] decoration",
|
2021-05-07 14:49:34 +00:00
|
|
|
str->Declaration()->source());
|
2021-04-21 17:55:12 +00:00
|
|
|
if (info->declaration->source().range.begin.line) {
|
|
|
|
diagnostics_.add_note("structure used as uniform buffer here",
|
|
|
|
info->declaration->source());
|
|
|
|
}
|
|
|
|
return false;
|
2021-04-19 20:20:33 +00:00
|
|
|
}
|
2021-04-21 17:55:12 +00:00
|
|
|
break;
|
2021-04-19 20:20:33 +00:00
|
|
|
}
|
2021-04-21 17:55:12 +00:00
|
|
|
default:
|
|
|
|
break;
|
2021-04-19 20:20:33 +00:00
|
|
|
}
|
|
|
|
|
2021-05-10 18:01:51 +00:00
|
|
|
return ValidateVariable(info);
|
2021-04-19 20:20:33 +00:00
|
|
|
}
|
|
|
|
|
2021-05-10 18:01:51 +00:00
|
|
|
bool Resolver::ValidateVariable(const VariableInfo* info) {
|
|
|
|
auto* var = info->declaration;
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* storage_type = info->type->UnwrapRef();
|
|
|
|
if (auto* r = storage_type->As<sem::Array>()) {
|
2021-05-07 20:58:34 +00:00
|
|
|
if (r->IsRuntimeSized()) {
|
2021-03-19 14:04:51 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0015",
|
|
|
|
"runtime arrays may only appear as the last member of a struct",
|
2021-04-06 14:07:07 +00:00
|
|
|
var->source());
|
2021-03-19 14:04:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2021-04-20 16:09:21 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
if (auto* r = storage_type->As<sem::MultisampledTexture>()) {
|
2021-04-21 13:47:12 +00:00
|
|
|
if (r->dim() != ast::TextureDimension::k2d) {
|
2021-05-21 14:32:38 +00:00
|
|
|
diagnostics_.add_error("only 2d multisampled textures are supported",
|
2021-04-20 16:09:21 +00:00
|
|
|
var->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
if (!r->type()->UnwrapRef()->is_numeric_scalar()) {
|
2021-04-20 16:09:21 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"texture_multisampled_2d<type>: type must be f32, i32 or u32",
|
|
|
|
var->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
if (auto* storage_tex = info->type->UnwrapRef()->As<sem::StorageTexture>()) {
|
2021-05-21 14:32:38 +00:00
|
|
|
if (info->access_control->access_control() ==
|
|
|
|
ast::AccessControl::kReadWrite) {
|
2021-05-14 17:51:13 +00:00
|
|
|
diagnostics_.add_error(
|
2021-05-21 14:32:38 +00:00
|
|
|
"storage textures only support read-only and write-only access",
|
2021-05-14 17:51:13 +00:00
|
|
|
var->source());
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-22 19:57:33 +00:00
|
|
|
|
2021-05-14 17:51:13 +00:00
|
|
|
if (!IsValidStorageTextureDimension(storage_tex->dim())) {
|
|
|
|
diagnostics_.add_error(
|
2021-05-21 14:32:38 +00:00
|
|
|
"cube dimensions for storage textures are not "
|
|
|
|
"supported",
|
2021-05-14 17:51:13 +00:00
|
|
|
var->source());
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-20 20:47:51 +00:00
|
|
|
|
2021-05-14 17:51:13 +00:00
|
|
|
if (!IsValidStorageTextureImageFormat(storage_tex->image_format())) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"image format must be one of the texel formats specified for "
|
|
|
|
"storage textues in "
|
|
|
|
"https://gpuweb.github.io/gpuweb/wgsl/#texel-formats",
|
|
|
|
var->source());
|
|
|
|
return false;
|
2021-04-20 20:47:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
if (storage_type->is_handle() &&
|
2021-05-10 18:01:51 +00:00
|
|
|
var->declared_storage_class() != ast::StorageClass::kNone) {
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#module-scope-variables
|
2021-05-18 10:28:48 +00:00
|
|
|
// If the store type is a texture type or a sampler type, then the
|
|
|
|
// variable declaration must not have a storage class decoration. The
|
|
|
|
// storage class will always be handle.
|
2021-05-10 18:01:51 +00:00
|
|
|
diagnostics_.add_error("variables of type '" + info->type_name +
|
|
|
|
"' must not have a storage class",
|
|
|
|
var->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-19 14:04:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-10 18:01:51 +00:00
|
|
|
bool Resolver::ValidateParameter(const VariableInfo* info) {
|
|
|
|
return ValidateVariable(info);
|
2021-04-06 14:07:07 +00:00
|
|
|
}
|
|
|
|
|
2021-04-21 16:13:42 +00:00
|
|
|
bool Resolver::ValidateFunction(const ast::Function* func,
|
|
|
|
const FunctionInfo* info) {
|
2021-03-19 14:04:51 +00:00
|
|
|
if (symbol_to_function_.find(func->symbol()) != symbol_to_function_.end()) {
|
|
|
|
diagnostics_.add_error("v-0016",
|
|
|
|
"function names must be unique '" +
|
|
|
|
builder_->Symbols().NameFor(func->symbol()) +
|
|
|
|
"'",
|
|
|
|
func->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-14 20:41:03 +00:00
|
|
|
auto stage_deco_count = 0;
|
|
|
|
auto workgroup_deco_count = 0;
|
|
|
|
for (auto* deco : func->decorations()) {
|
|
|
|
if (deco->Is<ast::StageDecoration>()) {
|
|
|
|
stage_deco_count++;
|
|
|
|
} else if (deco->Is<ast::WorkgroupDecoration>()) {
|
|
|
|
workgroup_deco_count++;
|
|
|
|
if (func->pipeline_stage() != ast::PipelineStage::kCompute) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"the workgroup_size attribute is only valid for compute stages",
|
|
|
|
deco->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if (!deco->Is<ast::InternalDecoration>()) {
|
|
|
|
diagnostics_.add_error("decoration is not valid for functions",
|
|
|
|
deco->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (stage_deco_count > 1) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0020", "only one stage decoration permitted per entry point",
|
|
|
|
func->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (workgroup_deco_count > 1) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"only one workgroup_size attribute permitted per entry point",
|
|
|
|
func->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-19 14:04:51 +00:00
|
|
|
for (auto* param : func->params()) {
|
2021-05-10 18:01:51 +00:00
|
|
|
if (!ValidateParameter(variable_to_info_.at(param))) {
|
2021-03-19 14:04:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-30 19:24:29 +00:00
|
|
|
if (!info->return_type->Is<sem::Void>()) {
|
2021-04-07 08:09:21 +00:00
|
|
|
if (func->body()) {
|
|
|
|
if (!func->get_last_statement() ||
|
|
|
|
!func->get_last_statement()->Is<ast::ReturnStatement>()) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0002", "non-void function must end with a return statement",
|
|
|
|
func->source());
|
|
|
|
return false;
|
|
|
|
}
|
2021-05-12 12:54:21 +00:00
|
|
|
} else if (!IsValidationDisabled(
|
|
|
|
func->decorations(),
|
|
|
|
ast::DisabledValidation::kFunctionHasNoBody)) {
|
2021-04-07 08:09:21 +00:00
|
|
|
TINT_ICE(diagnostics_)
|
|
|
|
<< "Function " << builder_->Symbols().NameFor(func->symbol())
|
2021-05-12 12:54:21 +00:00
|
|
|
<< " has no body";
|
2021-03-19 14:04:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (auto* deco : func->return_type_decorations()) {
|
2021-04-06 15:51:47 +00:00
|
|
|
if (!deco->IsAnyOf<ast::BuiltinDecoration, ast::LocationDecoration>()) {
|
2021-03-19 14:04:51 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"decoration is not valid for function return types",
|
|
|
|
deco->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-06 15:51:47 +00:00
|
|
|
if (func->IsEntryPoint()) {
|
2021-04-21 16:13:42 +00:00
|
|
|
if (!ValidateEntryPoint(func, info)) {
|
2021-04-06 15:51:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-21 16:13:42 +00:00
|
|
|
bool Resolver::ValidateEntryPoint(const ast::Function* func,
|
|
|
|
const FunctionInfo* info) {
|
2021-04-06 15:51:47 +00:00
|
|
|
// Use a lambda to validate the entry point decorations for a type.
|
2021-05-18 10:28:48 +00:00
|
|
|
// Persistent state is used to track which builtins and locations have
|
|
|
|
// already been seen, in order to catch conflicts.
|
|
|
|
// TODO(jrprice): This state could be stored in FunctionInfo instead, and
|
|
|
|
// then passed to sem::Function since it would be useful there too.
|
2021-04-06 15:51:47 +00:00
|
|
|
std::unordered_set<ast::Builtin> builtins;
|
|
|
|
std::unordered_set<uint32_t> locations;
|
|
|
|
enum class ParamOrRetType {
|
|
|
|
kParameter,
|
|
|
|
kReturnType,
|
|
|
|
};
|
|
|
|
// Helper to stringify a pipeline IO decoration.
|
|
|
|
auto deco_to_str = [](const ast::Decoration* deco) {
|
|
|
|
std::stringstream str;
|
|
|
|
if (auto* builtin = deco->As<ast::BuiltinDecoration>()) {
|
|
|
|
str << "builtin(" << builtin->value() << ")";
|
|
|
|
} else if (auto* location = deco->As<ast::LocationDecoration>()) {
|
|
|
|
str << "location(" << location->value() << ")";
|
|
|
|
}
|
|
|
|
return str.str();
|
|
|
|
};
|
|
|
|
// Inner lambda that is applied to a type and all of its members.
|
|
|
|
auto validate_entry_point_decorations_inner =
|
2021-05-07 14:49:34 +00:00
|
|
|
[&](const ast::DecorationList& decos, sem::Type* ty, Source source,
|
2021-04-06 15:51:47 +00:00
|
|
|
ParamOrRetType param_or_ret, bool is_struct_member) {
|
|
|
|
// Scan decorations for pipeline IO attributes.
|
|
|
|
// Check for overlap with attributes that have been seen previously.
|
|
|
|
ast::Decoration* pipeline_io_attribute = nullptr;
|
|
|
|
for (auto* deco : decos) {
|
|
|
|
if (auto* builtin = deco->As<ast::BuiltinDecoration>()) {
|
|
|
|
if (pipeline_io_attribute) {
|
|
|
|
diagnostics_.add_error("multiple entry point IO attributes",
|
|
|
|
deco->source());
|
|
|
|
diagnostics_.add_note(
|
|
|
|
"previously consumed " + deco_to_str(pipeline_io_attribute),
|
|
|
|
pipeline_io_attribute->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
pipeline_io_attribute = deco;
|
|
|
|
|
|
|
|
if (builtins.count(builtin->value())) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
deco_to_str(builtin) +
|
|
|
|
" attribute appears multiple times as pipeline " +
|
|
|
|
(param_or_ret == ParamOrRetType::kParameter ? "input"
|
|
|
|
: "output"),
|
|
|
|
func->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
builtins.emplace(builtin->value());
|
|
|
|
|
|
|
|
} else if (auto* location = deco->As<ast::LocationDecoration>()) {
|
|
|
|
if (pipeline_io_attribute) {
|
|
|
|
diagnostics_.add_error("multiple entry point IO attributes",
|
|
|
|
deco->source());
|
|
|
|
diagnostics_.add_note(
|
|
|
|
"previously consumed " + deco_to_str(pipeline_io_attribute),
|
|
|
|
pipeline_io_attribute->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
pipeline_io_attribute = deco;
|
|
|
|
|
|
|
|
if (locations.count(location->value())) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
deco_to_str(location) +
|
|
|
|
" attribute appears multiple times as pipeline " +
|
|
|
|
(param_or_ret == ParamOrRetType::kParameter ? "input"
|
|
|
|
: "output"),
|
|
|
|
func->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
locations.emplace(location->value());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that we saw a pipeline IO attribute iff we need one.
|
2021-05-10 17:38:01 +00:00
|
|
|
if (ty->Is<sem::Struct>()) {
|
2021-04-06 15:51:47 +00:00
|
|
|
if (pipeline_io_attribute) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"entry point IO attributes must not be used on structure " +
|
|
|
|
std::string(param_or_ret == ParamOrRetType::kParameter
|
|
|
|
? "parameters"
|
|
|
|
: "return types"),
|
|
|
|
pipeline_io_attribute->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!pipeline_io_attribute) {
|
|
|
|
std::string err = "missing entry point IO attribute";
|
|
|
|
if (!is_struct_member) {
|
|
|
|
err += (param_or_ret == ParamOrRetType::kParameter
|
|
|
|
? " on parameter"
|
|
|
|
: " on return type");
|
|
|
|
}
|
|
|
|
diagnostics_.add_error(err, source);
|
|
|
|
return false;
|
|
|
|
}
|
2021-05-07 20:28:04 +00:00
|
|
|
|
|
|
|
// Check that all user defined attributes are numeric scalars, vectors
|
|
|
|
// of numeric scalars.
|
|
|
|
// Testing for being a struct is handled by the if portion above.
|
|
|
|
if (!pipeline_io_attribute->Is<ast::BuiltinDecoration>()) {
|
2021-05-10 17:38:01 +00:00
|
|
|
if (!ty->is_numeric_scalar_or_vector()) {
|
2021-05-07 20:28:04 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"User defined entry point IO types must be a numeric scalar, "
|
|
|
|
"a numeric vector, or a structure",
|
|
|
|
source);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2021-04-06 15:51:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Outer lambda for validating the entry point decorations for a type.
|
|
|
|
auto validate_entry_point_decorations = [&](const ast::DecorationList& decos,
|
2021-05-07 14:49:34 +00:00
|
|
|
sem::Type* ty, Source source,
|
2021-04-06 15:51:47 +00:00
|
|
|
ParamOrRetType param_or_ret) {
|
|
|
|
// Validate the decorations for the type.
|
|
|
|
if (!validate_entry_point_decorations_inner(decos, ty, source, param_or_ret,
|
|
|
|
false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-10 17:38:01 +00:00
|
|
|
if (auto* str = ty->As<sem::Struct>()) {
|
2021-04-06 15:51:47 +00:00
|
|
|
// Validate the decorations for each struct members, and also check for
|
|
|
|
// invalid member types.
|
2021-05-07 14:49:34 +00:00
|
|
|
for (auto* member : str->Members()) {
|
2021-05-10 17:38:01 +00:00
|
|
|
if (member->Type()->Is<sem::Struct>()) {
|
2021-04-06 15:51:47 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"entry point IO types cannot contain nested structures",
|
2021-05-05 09:09:41 +00:00
|
|
|
member->Declaration()->source());
|
2021-04-06 15:51:47 +00:00
|
|
|
diagnostics_.add_note("while analysing entry point " +
|
|
|
|
builder_->Symbols().NameFor(func->symbol()),
|
|
|
|
func->source());
|
|
|
|
return false;
|
2021-05-10 17:38:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (auto* arr = member->Type()->As<sem::Array>()) {
|
2021-05-07 20:58:34 +00:00
|
|
|
if (arr->IsRuntimeSized()) {
|
2021-04-06 15:51:47 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"entry point IO types cannot contain runtime sized arrays",
|
2021-05-05 09:09:41 +00:00
|
|
|
member->Declaration()->source());
|
2021-04-06 15:51:47 +00:00
|
|
|
diagnostics_.add_note(
|
|
|
|
"while analysing entry point " +
|
|
|
|
builder_->Symbols().NameFor(func->symbol()),
|
|
|
|
func->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
if (!validate_entry_point_decorations_inner(
|
2021-05-10 17:38:01 +00:00
|
|
|
member->Declaration()->decorations(), member->Type(),
|
2021-05-05 09:09:41 +00:00
|
|
|
member->Declaration()->source(), param_or_ret, true)) {
|
2021-04-06 15:51:47 +00:00
|
|
|
diagnostics_.add_note("while analysing entry point " +
|
|
|
|
builder_->Symbols().NameFor(func->symbol()),
|
|
|
|
func->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
for (auto* param : info->parameters) {
|
2021-04-06 15:51:47 +00:00
|
|
|
if (!validate_entry_point_decorations(
|
2021-05-05 09:09:41 +00:00
|
|
|
param->declaration->decorations(), param->type,
|
|
|
|
param->declaration->source(), ParamOrRetType::kParameter)) {
|
2021-04-06 15:51:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-21 16:13:42 +00:00
|
|
|
// Clear IO sets after parameter validation. Builtin and location attributes
|
|
|
|
// in return types should be validated independently from those used in
|
|
|
|
// parameters.
|
|
|
|
builtins.clear();
|
|
|
|
locations.clear();
|
|
|
|
|
2021-04-30 19:24:29 +00:00
|
|
|
if (!info->return_type->Is<sem::Void>()) {
|
2021-04-06 15:51:47 +00:00
|
|
|
if (!validate_entry_point_decorations(func->return_type_decorations(),
|
2021-04-30 19:24:29 +00:00
|
|
|
info->return_type, func->source(),
|
2021-04-06 15:51:47 +00:00
|
|
|
ParamOrRetType::kReturnType)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-21 16:13:42 +00:00
|
|
|
if (func->pipeline_stage() == ast::PipelineStage::kVertex &&
|
|
|
|
builtins.count(ast::Builtin::kPosition) == 0) {
|
|
|
|
// Check module-scope variables, as the SPIR-V sanitizer generates these.
|
|
|
|
bool found = false;
|
|
|
|
for (auto* var : info->referenced_module_vars) {
|
|
|
|
if (auto* builtin = ast::GetDecoration<ast::BuiltinDecoration>(
|
|
|
|
var->declaration->decorations())) {
|
|
|
|
if (builtin->value() == ast::Builtin::kPosition) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-21 22:55:42 +00:00
|
|
|
// TODO(bclayton): Reenable after CTS is updated
|
|
|
|
if (((false)) && !found) {
|
2021-04-21 16:13:42 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"a vertex shader must include the 'position' builtin in its return "
|
|
|
|
"type",
|
|
|
|
func->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-10 19:16:46 +00:00
|
|
|
// Validate there are no resource variable binding collisions
|
|
|
|
std::unordered_map<sem::BindingPoint, const ast::Variable*> binding_points;
|
|
|
|
for (auto* var_info : info->referenced_module_vars) {
|
|
|
|
if (!var_info->declaration->binding_point()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
auto bp = var_info->binding_point;
|
|
|
|
auto res = binding_points.emplace(bp, var_info->declaration);
|
2021-05-12 13:30:51 +00:00
|
|
|
if (!res.second &&
|
|
|
|
!IsValidationDisabled(
|
|
|
|
var_info->declaration->decorations(),
|
|
|
|
ast::DisabledValidation::kBindingPointCollision) &&
|
|
|
|
!IsValidationDisabled(
|
|
|
|
res.first->second->decorations(),
|
|
|
|
ast::DisabledValidation::kBindingPointCollision)) {
|
2021-05-10 19:16:46 +00:00
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#resource-interface
|
|
|
|
// Bindings must not alias within a shader stage: two different
|
|
|
|
// variables in the resource interface of a given shader must not have
|
|
|
|
// the same group and binding values, when considered as a pair of
|
|
|
|
// values.
|
|
|
|
auto func_name = builder_->Symbols().NameFor(info->declaration->symbol());
|
|
|
|
diagnostics_.add_error("entry point '" + func_name +
|
|
|
|
"' references multiple variables that use the "
|
|
|
|
"same resource binding [[group(" +
|
|
|
|
std::to_string(bp.group) + "), binding(" +
|
|
|
|
std::to_string(bp.binding) + ")]]",
|
|
|
|
var_info->declaration->source());
|
|
|
|
diagnostics_.add_note("first resource binding usage declared here",
|
|
|
|
res.first->second->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-19 14:04:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::Function(ast::Function* func) {
|
2021-04-30 19:24:29 +00:00
|
|
|
auto* info = function_infos_.Create<FunctionInfo>(func);
|
2021-02-16 18:45:45 +00:00
|
|
|
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_function_, info);
|
2020-06-22 20:52:24 +00:00
|
|
|
|
2020-04-06 21:07:41 +00:00
|
|
|
variable_stack_.push_scope();
|
2020-11-16 16:31:07 +00:00
|
|
|
for (auto* param : func->params()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(param);
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* param_info = Variable(param, VariableKind::kParameter);
|
2021-04-16 01:15:43 +00:00
|
|
|
if (!param_info) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-19 19:16:12 +00:00
|
|
|
|
|
|
|
// TODO(amaiorano): Validate parameter decorations
|
|
|
|
for (auto* deco : param->decorations()) {
|
|
|
|
Mark(deco);
|
|
|
|
}
|
|
|
|
|
2021-04-09 13:56:08 +00:00
|
|
|
variable_stack_.set(param->symbol(), param_info);
|
2021-04-30 19:24:29 +00:00
|
|
|
info->parameters.emplace_back(param_info);
|
2021-03-31 15:42:17 +00:00
|
|
|
|
2021-03-31 17:23:07 +00:00
|
|
|
if (!ApplyStorageClassUsageToType(param->declared_storage_class(),
|
2021-04-30 19:24:29 +00:00
|
|
|
param_info->type, param->source())) {
|
2021-03-31 17:23:07 +00:00
|
|
|
diagnostics_.add_note("while instantiating parameter " +
|
|
|
|
builder_->Symbols().NameFor(param->symbol()),
|
|
|
|
param->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
if (auto* str = param_info->type->As<sem::Struct>()) {
|
2021-03-31 15:42:17 +00:00
|
|
|
switch (func->pipeline_stage()) {
|
|
|
|
case ast::PipelineStage::kVertex:
|
2021-05-07 14:49:34 +00:00
|
|
|
str->AddUsage(sem::PipelineStageUsage::kVertexInput);
|
2021-03-31 15:42:17 +00:00
|
|
|
break;
|
|
|
|
case ast::PipelineStage::kFragment:
|
2021-05-07 14:49:34 +00:00
|
|
|
str->AddUsage(sem::PipelineStageUsage::kFragmentInput);
|
2021-03-31 15:42:17 +00:00
|
|
|
break;
|
|
|
|
case ast::PipelineStage::kCompute:
|
2021-05-07 14:49:34 +00:00
|
|
|
str->AddUsage(sem::PipelineStageUsage::kComputeInput);
|
2021-03-31 15:42:17 +00:00
|
|
|
break;
|
|
|
|
case ast::PipelineStage::kNone:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
if (auto* ty = func->return_type()) {
|
|
|
|
info->return_type = Type(ty);
|
|
|
|
info->return_type_name = ty->FriendlyName(builder_->Symbols());
|
2021-04-30 19:24:29 +00:00
|
|
|
if (!info->return_type) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
info->return_type = builder_->create<sem::Void>();
|
2021-05-05 09:09:41 +00:00
|
|
|
info->return_type_name =
|
|
|
|
info->return_type->FriendlyName(builder_->Symbols());
|
2021-04-30 19:24:29 +00:00
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
if (auto* str = info->return_type->As<sem::Struct>()) {
|
2021-03-31 15:44:07 +00:00
|
|
|
if (!ApplyStorageClassUsageToType(ast::StorageClass::kNone, str,
|
|
|
|
func->source())) {
|
|
|
|
diagnostics_.add_note("while instantiating return type for " +
|
|
|
|
builder_->Symbols().NameFor(func->symbol()),
|
|
|
|
func->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-31 15:42:17 +00:00
|
|
|
switch (func->pipeline_stage()) {
|
|
|
|
case ast::PipelineStage::kVertex:
|
2021-05-07 14:49:34 +00:00
|
|
|
str->AddUsage(sem::PipelineStageUsage::kVertexOutput);
|
2021-03-31 15:42:17 +00:00
|
|
|
break;
|
|
|
|
case ast::PipelineStage::kFragment:
|
2021-05-07 14:49:34 +00:00
|
|
|
str->AddUsage(sem::PipelineStageUsage::kFragmentOutput);
|
2021-03-31 15:42:17 +00:00
|
|
|
break;
|
|
|
|
case ast::PipelineStage::kCompute:
|
2021-05-07 14:49:34 +00:00
|
|
|
str->AddUsage(sem::PipelineStageUsage::kComputeOutput);
|
2021-03-31 15:42:17 +00:00
|
|
|
break;
|
|
|
|
case ast::PipelineStage::kNone:
|
|
|
|
break;
|
|
|
|
}
|
2020-06-22 20:18:17 +00:00
|
|
|
}
|
|
|
|
|
2021-04-07 08:09:21 +00:00
|
|
|
if (func->body()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(func->body());
|
2021-05-15 14:48:46 +00:00
|
|
|
if (current_statement_) {
|
|
|
|
TINT_ICE(diagnostics_)
|
|
|
|
<< "Resolver::Function() called with a current statement";
|
|
|
|
return false;
|
|
|
|
}
|
2021-05-20 15:17:08 +00:00
|
|
|
auto* sem_block = builder_->create<sem::FunctionBlockStatement>(func);
|
2021-05-15 14:48:46 +00:00
|
|
|
builder_->Sem().Add(func->body(), sem_block);
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_statement_, sem_block);
|
2021-05-15 14:48:46 +00:00
|
|
|
if (!BlockScope(func->body(),
|
|
|
|
[&] { return Statements(func->body()->list()); })) {
|
2021-04-07 08:09:21 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-04-06 21:07:41 +00:00
|
|
|
}
|
|
|
|
variable_stack_.pop_scope();
|
|
|
|
|
2021-04-19 19:16:12 +00:00
|
|
|
for (auto* deco : func->decorations()) {
|
|
|
|
Mark(deco);
|
|
|
|
}
|
|
|
|
for (auto* deco : func->return_type_decorations()) {
|
|
|
|
Mark(deco);
|
|
|
|
}
|
|
|
|
|
2021-05-19 08:15:18 +00:00
|
|
|
// Set work-group size defaults.
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
info->workgroup_size[i].value = 1;
|
|
|
|
info->workgroup_size[i].overridable_const = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (auto* workgroup =
|
|
|
|
ast::GetDecoration<ast::WorkgroupDecoration>(func->decorations())) {
|
2021-05-19 13:40:08 +00:00
|
|
|
auto values = workgroup->values();
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
// Each argument to this decoration can either be a literal, an
|
|
|
|
// identifier for a module-scope constants, or nullptr if not specified.
|
|
|
|
|
|
|
|
if (!values[i]) {
|
|
|
|
// Not specified, just use the default.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Mark(values[i]);
|
|
|
|
|
|
|
|
int32_t value = 0;
|
|
|
|
if (auto* ident = values[i]->As<ast::IdentifierExpression>()) {
|
|
|
|
// We have an identifier of a module-scope constant.
|
|
|
|
if (!Identifier(ident)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
VariableInfo* var;
|
|
|
|
if (!variable_stack_.get(ident->symbol(), &var) ||
|
|
|
|
!(var->declaration->is_const() && var->type->Is<sem::I32>())) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"workgroup_size parameter must be a literal i32 or an i32 "
|
|
|
|
"module-scope constant",
|
|
|
|
values[i]->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Capture the constant if an [[override]] attribute is present.
|
|
|
|
if (ast::HasDecoration<ast::OverrideDecoration>(
|
|
|
|
var->declaration->decorations())) {
|
|
|
|
info->workgroup_size[i].overridable_const = var->declaration;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* constructor = var->declaration->constructor();
|
|
|
|
if (constructor) {
|
|
|
|
// Resolve the constructor expression to use as the default value.
|
|
|
|
if (!GetScalarConstExprValue(constructor, &value)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// No constructor means this value must be overriden by the user.
|
|
|
|
info->workgroup_size[i].value = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else if (auto* scalar =
|
|
|
|
values[i]->As<ast::ScalarConstructorExpression>()) {
|
|
|
|
// We have a literal.
|
|
|
|
Mark(scalar->literal());
|
|
|
|
|
|
|
|
if (!scalar->literal()->Is<ast::IntLiteral>()) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"workgroup_size parameter must be a literal i32 or an i32 "
|
|
|
|
"module-scope constant",
|
|
|
|
values[i]->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!GetScalarConstExprValue(scalar, &value)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate and set the default value for this dimension.
|
|
|
|
if (value < 1) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"workgroup_size parameter must be a positive i32 value",
|
|
|
|
values[i]->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
info->workgroup_size[i].value = value;
|
|
|
|
}
|
2021-05-19 08:15:18 +00:00
|
|
|
}
|
|
|
|
|
2021-04-30 19:24:29 +00:00
|
|
|
if (!ValidateFunction(func, info)) {
|
2021-03-26 12:47:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-02-24 22:11:34 +00:00
|
|
|
// Register the function information _after_ processing the statements. This
|
|
|
|
// allows us to catch a function calling itself when determining the call
|
|
|
|
// information as this function doesn't exist until it's finished.
|
2021-04-30 19:24:29 +00:00
|
|
|
symbol_to_function_[func->symbol()] = info;
|
|
|
|
function_to_info_.emplace(func, info);
|
2021-02-24 22:11:34 +00:00
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::Statements(const ast::StatementList& stmts) {
|
2021-03-09 10:26:57 +00:00
|
|
|
for (auto* stmt : stmts) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(stmt);
|
2021-03-09 10:54:37 +00:00
|
|
|
if (!Statement(stmt)) {
|
2020-04-06 21:07:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::Statement(ast::Statement* stmt) {
|
2021-05-15 14:48:46 +00:00
|
|
|
sem::Statement* sem_statement;
|
|
|
|
if (stmt->As<ast::BlockStatement>()) {
|
|
|
|
sem_statement = builder_->create<sem::BlockStatement>(
|
2021-05-19 21:22:07 +00:00
|
|
|
stmt->As<ast::BlockStatement>(), current_statement_);
|
2021-05-15 14:48:46 +00:00
|
|
|
} else {
|
|
|
|
sem_statement = builder_->create<sem::Statement>(stmt, current_statement_);
|
|
|
|
}
|
2021-03-31 20:35:46 +00:00
|
|
|
builder_->Sem().Add(stmt, sem_statement);
|
2021-02-16 18:45:45 +00:00
|
|
|
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_statement_, sem_statement);
|
2021-02-16 18:45:45 +00:00
|
|
|
|
2021-05-15 14:48:46 +00:00
|
|
|
if (stmt->Is<ast::ElseStatement>()) {
|
|
|
|
TINT_ICE(diagnostics_)
|
|
|
|
<< "Resolver::Statement() encountered an Else statement. Else "
|
|
|
|
"statements are embedded in If statements, so should never be "
|
|
|
|
"encountered as top-level statements";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* a = stmt->As<ast::AssignmentStatement>()) {
|
2021-03-31 13:26:43 +00:00
|
|
|
return Assignment(a);
|
2020-04-07 12:47:23 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* b = stmt->As<ast::BlockStatement>()) {
|
2021-05-15 14:48:46 +00:00
|
|
|
return BlockScope(b, [&] { return Statements(b->list()); });
|
2020-07-27 15:25:00 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (stmt->Is<ast::BreakStatement>()) {
|
2021-05-19 21:22:07 +00:00
|
|
|
if (!current_block_->FindFirstParent<sem::LoopBlockStatement>() &&
|
|
|
|
!current_block_->FindFirstParent<sem::SwitchCaseBlockStatement>()) {
|
2021-03-09 15:06:37 +00:00
|
|
|
diagnostics_.add_error("break statement must be in a loop or switch case",
|
|
|
|
stmt->source());
|
|
|
|
return false;
|
|
|
|
}
|
2020-06-03 16:11:28 +00:00
|
|
|
return true;
|
2020-04-07 12:54:10 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* c = stmt->As<ast::CallStatement>()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(c->expr());
|
2021-03-09 10:54:37 +00:00
|
|
|
return Expression(c->expr());
|
2020-07-21 13:42:13 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* c = stmt->As<ast::CaseStatement>()) {
|
2021-03-09 15:06:37 +00:00
|
|
|
return CaseStatement(c);
|
2020-04-07 12:54:20 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (stmt->Is<ast::ContinueStatement>()) {
|
2021-03-09 10:26:57 +00:00
|
|
|
// Set if we've hit the first continue statement in our parent loop
|
|
|
|
if (auto* loop_block =
|
2021-05-19 21:22:07 +00:00
|
|
|
current_block_->FindFirstParent<sem::LoopBlockStatement>()) {
|
2021-05-15 14:48:46 +00:00
|
|
|
if (loop_block->FirstContinue() == size_t(~0)) {
|
2021-05-19 21:22:07 +00:00
|
|
|
const_cast<sem::LoopBlockStatement*>(loop_block)
|
2021-05-15 14:48:46 +00:00
|
|
|
->SetFirstContinue(loop_block->Decls().size());
|
2021-03-09 10:26:57 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
diagnostics_.add_error("continue statement must be in a loop",
|
|
|
|
stmt->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-06-03 16:11:28 +00:00
|
|
|
return true;
|
2020-04-07 12:54:29 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (stmt->Is<ast::DiscardStatement>()) {
|
2020-07-25 14:33:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (stmt->Is<ast::FallthroughStatement>()) {
|
2020-04-07 12:54:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* i = stmt->As<ast::IfStatement>()) {
|
2021-03-09 15:17:28 +00:00
|
|
|
return IfStatement(i);
|
2020-04-07 12:55:25 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* l = stmt->As<ast::LoopStatement>()) {
|
2021-05-15 14:48:46 +00:00
|
|
|
return LoopStatement(l);
|
2020-04-07 12:55:51 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* r = stmt->As<ast::ReturnStatement>()) {
|
2021-03-22 23:20:17 +00:00
|
|
|
return Return(r);
|
2020-04-07 12:56:24 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* s = stmt->As<ast::SwitchStatement>()) {
|
2021-03-25 12:55:27 +00:00
|
|
|
return Switch(s);
|
2020-04-07 12:54:59 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* v = stmt->As<ast::VariableDeclStatement>()) {
|
2021-03-17 22:47:33 +00:00
|
|
|
return VariableDeclStatement(v);
|
2020-04-07 12:57:12 +00:00
|
|
|
}
|
2020-04-07 12:47:23 +00:00
|
|
|
|
2021-02-17 20:13:34 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"unknown statement type for type determination: " + builder_->str(stmt),
|
|
|
|
stmt->source());
|
2020-04-06 21:07:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-09 15:06:37 +00:00
|
|
|
bool Resolver::CaseStatement(ast::CaseStatement* stmt) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(stmt->body());
|
|
|
|
for (auto* sel : stmt->selectors()) {
|
|
|
|
Mark(sel);
|
|
|
|
}
|
2021-05-19 21:22:07 +00:00
|
|
|
auto* sem_block = builder_->create<sem::SwitchCaseBlockStatement>(
|
|
|
|
stmt->body(), current_statement_);
|
2021-05-15 14:48:46 +00:00
|
|
|
builder_->Sem().Add(stmt->body(), sem_block);
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_statement_, sem_block);
|
2021-05-15 14:48:46 +00:00
|
|
|
return BlockScope(stmt->body(),
|
2021-03-09 15:06:37 +00:00
|
|
|
[&] { return Statements(stmt->body()->list()); });
|
2021-03-09 15:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Resolver::IfStatement(ast::IfStatement* stmt) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(stmt->condition());
|
2021-03-09 15:17:28 +00:00
|
|
|
if (!Expression(stmt->condition())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* cond_type = TypeOf(stmt->condition())->UnwrapRef();
|
2021-05-20 14:22:28 +00:00
|
|
|
if (!cond_type->Is<sem::Bool>()) {
|
2021-03-09 15:17:28 +00:00
|
|
|
diagnostics_.add_error("if statement condition must be bool, got " +
|
|
|
|
cond_type->FriendlyName(builder_->Symbols()),
|
|
|
|
stmt->condition()->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(stmt->body());
|
2021-05-15 14:48:46 +00:00
|
|
|
{
|
2021-05-19 21:22:07 +00:00
|
|
|
auto* sem_block =
|
|
|
|
builder_->create<sem::BlockStatement>(stmt->body(), current_statement_);
|
2021-05-15 14:48:46 +00:00
|
|
|
builder_->Sem().Add(stmt->body(), sem_block);
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_statement_, sem_block);
|
2021-05-15 14:48:46 +00:00
|
|
|
if (!BlockScope(stmt->body(),
|
|
|
|
[&] { return Statements(stmt->body()->list()); })) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-03-09 15:17:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (auto* else_stmt : stmt->else_statements()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(else_stmt);
|
2021-03-31 20:35:46 +00:00
|
|
|
auto* sem_else_stmt =
|
2021-05-15 14:48:46 +00:00
|
|
|
builder_->create<sem::Statement>(else_stmt, current_statement_);
|
2021-03-31 20:35:46 +00:00
|
|
|
builder_->Sem().Add(else_stmt, sem_else_stmt);
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_statement_, sem_else_stmt);
|
2021-04-19 19:16:12 +00:00
|
|
|
if (auto* cond = else_stmt->condition()) {
|
|
|
|
Mark(cond);
|
|
|
|
if (!Expression(cond)) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-05-10 13:46:06 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* else_cond_type = TypeOf(cond)->UnwrapRef();
|
2021-05-20 14:22:28 +00:00
|
|
|
if (!else_cond_type->Is<sem::Bool>()) {
|
2021-05-10 13:46:06 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"else statement condition must be bool, got " +
|
|
|
|
else_cond_type->FriendlyName(builder_->Symbols()),
|
|
|
|
cond->source());
|
|
|
|
return false;
|
|
|
|
}
|
2021-03-31 20:35:46 +00:00
|
|
|
}
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(else_stmt->body());
|
2021-05-15 14:48:46 +00:00
|
|
|
{
|
2021-05-19 21:22:07 +00:00
|
|
|
auto* sem_block = builder_->create<sem::BlockStatement>(
|
|
|
|
else_stmt->body(), current_statement_);
|
2021-05-15 14:48:46 +00:00
|
|
|
builder_->Sem().Add(else_stmt->body(), sem_block);
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_statement_, sem_block);
|
2021-05-15 14:48:46 +00:00
|
|
|
if (!BlockScope(else_stmt->body(),
|
|
|
|
[&] { return Statements(else_stmt->body()->list()); })) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-03-09 15:17:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2021-03-09 15:06:37 +00:00
|
|
|
}
|
|
|
|
|
2021-05-15 14:48:46 +00:00
|
|
|
bool Resolver::LoopStatement(ast::LoopStatement* stmt) {
|
|
|
|
// We don't call DetermineBlockStatement on the body and continuing block as
|
|
|
|
// these would make their BlockInfo siblings as in the AST, but we want the
|
|
|
|
// body BlockInfo to parent the continuing BlockInfo for semantics and
|
|
|
|
// validation. Also, we need to set their types differently.
|
|
|
|
Mark(stmt->body());
|
|
|
|
|
2021-05-19 21:22:07 +00:00
|
|
|
auto* sem_block_body = builder_->create<sem::LoopBlockStatement>(
|
|
|
|
stmt->body(), current_statement_);
|
2021-05-15 14:48:46 +00:00
|
|
|
builder_->Sem().Add(stmt->body(), sem_block_body);
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_statement_, sem_block_body);
|
2021-05-15 14:48:46 +00:00
|
|
|
return BlockScope(stmt->body(), [&] {
|
|
|
|
if (!Statements(stmt->body()->list())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (stmt->continuing()) { // has_continuing() also checks for empty()
|
|
|
|
Mark(stmt->continuing());
|
|
|
|
}
|
|
|
|
if (stmt->has_continuing()) {
|
2021-05-19 21:22:07 +00:00
|
|
|
auto* sem_block_continuing =
|
|
|
|
builder_->create<sem::LoopContinuingBlockStatement>(
|
|
|
|
stmt->continuing(), current_statement_);
|
2021-05-15 14:48:46 +00:00
|
|
|
builder_->Sem().Add(stmt->continuing(), sem_block_continuing);
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_statement_, sem_block_continuing);
|
2021-05-15 14:48:46 +00:00
|
|
|
if (!BlockScope(stmt->continuing(),
|
|
|
|
[&] { return Statements(stmt->continuing()->list()); })) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::Expressions(const ast::ExpressionList& list) {
|
2020-11-16 16:31:07 +00:00
|
|
|
for (auto* expr : list) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(expr);
|
2021-03-09 10:54:37 +00:00
|
|
|
if (!Expression(expr)) {
|
2020-04-20 15:46:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::Expression(ast::Expression* expr) {
|
2021-01-29 16:43:41 +00:00
|
|
|
if (TypeOf(expr)) {
|
|
|
|
return true; // Already resolved
|
|
|
|
}
|
|
|
|
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* a = expr->As<ast::ArrayAccessorExpression>()) {
|
2021-03-09 10:54:37 +00:00
|
|
|
return ArrayAccessor(a);
|
2020-04-07 12:57:42 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* b = expr->As<ast::BinaryExpression>()) {
|
2021-03-09 10:54:37 +00:00
|
|
|
return Binary(b);
|
2020-04-07 19:27:41 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* b = expr->As<ast::BitcastExpression>()) {
|
2021-03-09 10:54:37 +00:00
|
|
|
return Bitcast(b);
|
2020-09-22 22:07:13 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* c = expr->As<ast::CallExpression>()) {
|
2021-03-09 10:54:37 +00:00
|
|
|
return Call(c);
|
2020-04-07 16:41:10 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* c = expr->As<ast::ConstructorExpression>()) {
|
2021-03-09 10:54:37 +00:00
|
|
|
return Constructor(c);
|
2020-04-07 12:46:30 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* i = expr->As<ast::IdentifierExpression>()) {
|
2021-03-09 10:54:37 +00:00
|
|
|
return Identifier(i);
|
2020-04-07 12:57:27 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* m = expr->As<ast::MemberAccessorExpression>()) {
|
2021-03-09 10:54:37 +00:00
|
|
|
return MemberAccessor(m);
|
2020-04-07 16:41:33 +00:00
|
|
|
}
|
2020-11-30 23:30:58 +00:00
|
|
|
if (auto* u = expr->As<ast::UnaryOpExpression>()) {
|
2021-03-09 10:54:37 +00:00
|
|
|
return UnaryOp(u);
|
2020-04-07 19:27:11 +00:00
|
|
|
}
|
2020-04-07 12:46:30 +00:00
|
|
|
|
2021-02-17 20:13:34 +00:00
|
|
|
diagnostics_.add_error("unknown expression for type determination",
|
|
|
|
expr->source());
|
2020-04-06 21:07:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::ArrayAccessor(ast::ArrayAccessorExpression* expr) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(expr->array());
|
2021-03-09 10:54:37 +00:00
|
|
|
if (!Expression(expr->array())) {
|
2020-04-07 12:57:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(expr->idx_expr());
|
2021-03-09 10:54:37 +00:00
|
|
|
if (!Expression(expr->idx_expr())) {
|
2020-05-01 16:17:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-04-23 22:26:52 +00:00
|
|
|
|
2021-01-29 16:43:41 +00:00
|
|
|
auto* res = TypeOf(expr->array());
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* parent_type = res->UnwrapRef();
|
2021-05-07 20:58:34 +00:00
|
|
|
const sem::Type* ret = nullptr;
|
|
|
|
if (auto* arr = parent_type->As<sem::Array>()) {
|
|
|
|
ret = arr->ElemType();
|
2021-04-19 22:51:23 +00:00
|
|
|
} else if (auto* vec = parent_type->As<sem::Vector>()) {
|
2020-12-01 21:07:27 +00:00
|
|
|
ret = vec->type();
|
2021-04-19 22:51:23 +00:00
|
|
|
} else if (auto* mat = parent_type->As<sem::Matrix>()) {
|
|
|
|
ret = builder_->create<sem::Vector>(mat->type(), mat->rows());
|
2020-04-07 12:57:42 +00:00
|
|
|
} else {
|
2021-02-17 20:13:34 +00:00
|
|
|
diagnostics_.add_error("invalid parent type (" + parent_type->type_name() +
|
|
|
|
") in array accessor",
|
|
|
|
expr->source());
|
2020-04-07 12:57:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-04-23 22:26:52 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
// If we're extracting from a reference, we return a reference.
|
|
|
|
if (auto* ref = res->As<sem::Reference>()) {
|
|
|
|
ret = builder_->create<sem::Reference>(ret, ref->StorageClass());
|
2020-04-23 22:26:52 +00:00
|
|
|
}
|
2021-01-29 16:43:41 +00:00
|
|
|
SetType(expr, ret);
|
2020-04-23 22:26:52 +00:00
|
|
|
|
2020-04-07 12:57:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::Bitcast(ast::BitcastExpression* expr) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(expr->expr());
|
2021-03-09 10:54:37 +00:00
|
|
|
if (!Expression(expr->expr())) {
|
2020-06-18 18:02:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-01-29 16:43:41 +00:00
|
|
|
SetType(expr, expr->type());
|
2020-04-07 12:57:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::Call(ast::CallExpression* call) {
|
|
|
|
if (!Expressions(call->params())) {
|
2020-04-20 15:46:18 +00:00
|
|
|
return false;
|
2020-04-20 14:18:54 +00:00
|
|
|
}
|
|
|
|
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(call->func());
|
2021-05-22 12:42:14 +00:00
|
|
|
auto* ident = call->func();
|
2021-02-03 21:02:25 +00:00
|
|
|
auto name = builder_->Symbols().NameFor(ident->symbol());
|
|
|
|
|
2021-04-16 19:07:51 +00:00
|
|
|
auto intrinsic_type = sem::ParseIntrinsicType(name);
|
2021-02-08 22:31:44 +00:00
|
|
|
if (intrinsic_type != IntrinsicType::kNone) {
|
2021-03-09 10:54:37 +00:00
|
|
|
if (!IntrinsicCall(call, intrinsic_type)) {
|
2021-02-03 21:02:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (current_function_) {
|
|
|
|
auto callee_func_it = symbol_to_function_.find(ident->symbol());
|
|
|
|
if (callee_func_it == symbol_to_function_.end()) {
|
2021-02-24 22:11:34 +00:00
|
|
|
if (current_function_->declaration->symbol() == ident->symbol()) {
|
2021-03-22 17:42:06 +00:00
|
|
|
diagnostics_.add_error("v-0004",
|
|
|
|
"recursion is not permitted. '" + name +
|
2021-02-24 22:11:34 +00:00
|
|
|
"' attempted to call itself.",
|
|
|
|
call->source());
|
|
|
|
} else {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0006: unable to find called function: " + name,
|
|
|
|
call->source());
|
|
|
|
}
|
2020-04-20 15:46:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-02-03 21:02:25 +00:00
|
|
|
auto* callee_func = callee_func_it->second;
|
2020-07-14 20:37:28 +00:00
|
|
|
|
2021-05-22 12:48:24 +00:00
|
|
|
callee_func->callsites.push_back(call);
|
|
|
|
|
2021-03-03 19:54:44 +00:00
|
|
|
// Note: Requires called functions to be resolved first.
|
2021-05-18 10:28:48 +00:00
|
|
|
// This is currently guaranteed as functions must be declared before
|
|
|
|
// use.
|
2021-03-03 19:54:44 +00:00
|
|
|
current_function_->transitive_calls.add(callee_func);
|
|
|
|
for (auto* transitive_call : callee_func->transitive_calls) {
|
|
|
|
current_function_->transitive_calls.add(transitive_call);
|
|
|
|
}
|
|
|
|
|
2021-02-03 21:02:25 +00:00
|
|
|
// We inherit any referenced variables from the callee.
|
|
|
|
for (auto* var : callee_func->referenced_module_vars) {
|
|
|
|
set_referenced_from_function_if_needed(var, false);
|
2020-07-14 19:45:47 +00:00
|
|
|
}
|
2020-04-20 15:46:18 +00:00
|
|
|
}
|
2021-02-03 21:02:25 +00:00
|
|
|
|
|
|
|
auto iter = symbol_to_function_.find(ident->symbol());
|
|
|
|
if (iter == symbol_to_function_.end()) {
|
2021-02-17 20:13:34 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0005: function must be declared before use: '" + name + "'",
|
|
|
|
call->source());
|
2020-04-20 15:46:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-08-18 02:10:03 +00:00
|
|
|
|
2021-02-03 21:02:25 +00:00
|
|
|
auto* function = iter->second;
|
2021-02-16 18:45:45 +00:00
|
|
|
function_calls_.emplace(call,
|
|
|
|
FunctionCallInfo{function, current_statement_});
|
2021-04-30 19:24:29 +00:00
|
|
|
SetType(call, function->return_type, function->return_type_name);
|
2020-08-18 02:10:03 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 16:41:10 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::IntrinsicCall(ast::CallExpression* call,
|
2021-04-16 19:07:51 +00:00
|
|
|
sem::IntrinsicType intrinsic_type) {
|
2021-04-28 12:38:13 +00:00
|
|
|
std::vector<const sem::Type*> arg_tys;
|
2021-02-08 22:31:44 +00:00
|
|
|
arg_tys.reserve(call->params().size());
|
|
|
|
for (auto* expr : call->params()) {
|
|
|
|
arg_tys.emplace_back(TypeOf(expr));
|
|
|
|
}
|
|
|
|
|
2021-02-17 20:13:34 +00:00
|
|
|
auto result = intrinsic_table_->Lookup(*builder_, intrinsic_type, arg_tys,
|
|
|
|
call->source());
|
2021-02-08 22:42:54 +00:00
|
|
|
if (!result.intrinsic) {
|
|
|
|
// Intrinsic lookup failed.
|
2021-02-17 20:13:34 +00:00
|
|
|
diagnostics_.add(result.diagnostics);
|
2021-02-08 22:42:54 +00:00
|
|
|
return false;
|
2020-07-21 17:44:44 +00:00
|
|
|
}
|
2020-06-01 13:43:22 +00:00
|
|
|
|
2021-04-16 19:07:51 +00:00
|
|
|
builder_->Sem().Add(call, builder_->create<sem::Call>(call, result.intrinsic,
|
|
|
|
current_statement_));
|
2021-02-09 17:38:05 +00:00
|
|
|
SetType(call, result.intrinsic->ReturnType());
|
2020-09-22 19:42:13 +00:00
|
|
|
return true;
|
2020-06-01 13:43:22 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::Constructor(ast::ConstructorExpression* expr) {
|
2021-03-15 21:21:33 +00:00
|
|
|
if (auto* type_ctor = expr->As<ast::TypeConstructorExpression>()) {
|
|
|
|
for (auto* value : type_ctor->values()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(value);
|
2021-03-09 10:54:37 +00:00
|
|
|
if (!Expression(value)) {
|
2020-04-24 00:41:12 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2021-04-28 13:50:43 +00:00
|
|
|
|
2021-03-15 21:21:33 +00:00
|
|
|
SetType(expr, type_ctor->type());
|
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
const sem::Type* type = TypeOf(expr);
|
|
|
|
|
2021-03-15 21:21:33 +00:00
|
|
|
// Now that the argument types have been determined, make sure that they
|
|
|
|
// obey the constructor type rules laid out in
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl.html#type-constructor-expr.
|
2021-05-05 09:09:41 +00:00
|
|
|
if (auto* vec_type = type->As<sem::Vector>()) {
|
|
|
|
return ValidateVectorConstructor(type_ctor, vec_type);
|
2021-03-18 15:43:14 +00:00
|
|
|
}
|
2021-05-05 09:09:41 +00:00
|
|
|
if (auto* mat_type = type->As<sem::Matrix>()) {
|
|
|
|
return ValidateMatrixConstructor(type_ctor, mat_type);
|
2021-03-15 21:21:33 +00:00
|
|
|
}
|
|
|
|
// TODO(crbug.com/tint/634): Validate array constructor
|
|
|
|
} else if (auto* scalar_ctor = expr->As<ast::ScalarConstructorExpression>()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(scalar_ctor->literal());
|
2021-04-28 13:50:43 +00:00
|
|
|
SetType(expr, TypeOf(scalar_ctor->literal()));
|
2020-04-07 12:46:30 +00:00
|
|
|
} else {
|
2021-03-15 21:21:33 +00:00
|
|
|
TINT_ICE(diagnostics_) << "unexpected constructor expression type";
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-28 13:50:43 +00:00
|
|
|
bool Resolver::ValidateVectorConstructor(
|
|
|
|
const ast::TypeConstructorExpression* ctor,
|
2021-05-05 09:09:41 +00:00
|
|
|
const sem::Vector* vec_type) {
|
|
|
|
auto& values = ctor->values();
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* elem_type = vec_type->type();
|
2021-03-15 21:21:33 +00:00
|
|
|
size_t value_cardinality_sum = 0;
|
|
|
|
for (auto* value : values) {
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* value_type = TypeOf(value)->UnwrapRef();
|
2021-03-15 21:21:33 +00:00
|
|
|
if (value_type->is_scalar()) {
|
|
|
|
if (elem_type != value_type) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"type in vector constructor does not match vector type: "
|
|
|
|
"expected '" +
|
|
|
|
elem_type->FriendlyName(builder_->Symbols()) + "', found '" +
|
2021-04-28 13:50:43 +00:00
|
|
|
TypeNameOf(value) + "'",
|
2021-03-15 21:21:33 +00:00
|
|
|
value->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
value_cardinality_sum++;
|
2021-04-19 22:51:23 +00:00
|
|
|
} else if (auto* value_vec = value_type->As<sem::Vector>()) {
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* value_elem_type = value_vec->type();
|
2021-03-15 21:21:33 +00:00
|
|
|
// A mismatch of vector type parameter T is only an error if multiple
|
|
|
|
// arguments are present. A single argument constructor constitutes a
|
|
|
|
// type conversion expression.
|
|
|
|
// NOTE: A conversion expression from a vec<bool> to any other vecN<T>
|
|
|
|
// is disallowed (see
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl.html#conversion-expr).
|
|
|
|
if (elem_type != value_elem_type &&
|
|
|
|
(values.size() > 1u || value_vec->is_bool_vector())) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"type in vector constructor does not match vector type: "
|
|
|
|
"expected '" +
|
|
|
|
elem_type->FriendlyName(builder_->Symbols()) + "', found '" +
|
|
|
|
value_elem_type->FriendlyName(builder_->Symbols()) + "'",
|
|
|
|
value->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
value_cardinality_sum += value_vec->size();
|
|
|
|
} else {
|
|
|
|
// A vector constructor can only accept vectors and scalars.
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"expected vector or scalar type in vector constructor; found: " +
|
|
|
|
value_type->FriendlyName(builder_->Symbols()),
|
|
|
|
value->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// A correct vector constructor must either be a zero-value expression
|
|
|
|
// or the number of components of all constructor arguments must add up
|
|
|
|
// to the vector cardinality.
|
2021-03-18 15:43:14 +00:00
|
|
|
if (value_cardinality_sum > 0 && value_cardinality_sum != vec_type->size()) {
|
2021-03-15 21:21:33 +00:00
|
|
|
if (values.empty()) {
|
|
|
|
TINT_ICE(diagnostics_)
|
|
|
|
<< "constructor arguments expected to be non-empty!";
|
|
|
|
}
|
|
|
|
const Source& values_start = values[0]->source();
|
|
|
|
const Source& values_end = values[values.size() - 1]->source();
|
|
|
|
diagnostics_.add_error(
|
2021-04-28 13:50:43 +00:00
|
|
|
"attempted to construct '" + TypeNameOf(ctor) + "' with " +
|
2021-03-15 21:21:33 +00:00
|
|
|
std::to_string(value_cardinality_sum) + " component(s)",
|
2021-04-27 17:32:37 +00:00
|
|
|
Source::Combine(values_start, values_end));
|
2021-03-15 21:21:33 +00:00
|
|
|
return false;
|
2020-04-07 12:46:30 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-28 13:50:43 +00:00
|
|
|
bool Resolver::ValidateMatrixConstructor(
|
|
|
|
const ast::TypeConstructorExpression* ctor,
|
2021-05-05 09:09:41 +00:00
|
|
|
const sem::Matrix* matrix_type) {
|
|
|
|
auto& values = ctor->values();
|
2021-03-18 15:43:14 +00:00
|
|
|
// Zero Value expression
|
|
|
|
if (values.empty()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* elem_type = matrix_type->type();
|
2021-03-18 15:43:14 +00:00
|
|
|
if (matrix_type->columns() != values.size()) {
|
|
|
|
const Source& values_start = values[0]->source();
|
|
|
|
const Source& values_end = values[values.size() - 1]->source();
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"expected " + std::to_string(matrix_type->columns()) + " '" +
|
|
|
|
VectorPretty(matrix_type->rows(), elem_type) + "' arguments in '" +
|
2021-04-28 13:50:43 +00:00
|
|
|
TypeNameOf(ctor) + "' constructor, found " +
|
|
|
|
std::to_string(values.size()),
|
2021-04-27 17:32:37 +00:00
|
|
|
Source::Combine(values_start, values_end));
|
2021-03-18 15:43:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto* value : values) {
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* value_type = TypeOf(value)->UnwrapRef();
|
2021-04-19 22:51:23 +00:00
|
|
|
auto* value_vec = value_type->As<sem::Vector>();
|
2021-03-18 15:43:14 +00:00
|
|
|
|
|
|
|
if (!value_vec || value_vec->size() != matrix_type->rows() ||
|
2021-05-18 10:28:48 +00:00
|
|
|
elem_type != value_vec->type()) {
|
2021-04-28 13:50:43 +00:00
|
|
|
diagnostics_.add_error("expected argument type '" +
|
|
|
|
VectorPretty(matrix_type->rows(), elem_type) +
|
|
|
|
"' in '" + TypeNameOf(ctor) +
|
|
|
|
"' constructor, found '" + TypeNameOf(value) +
|
|
|
|
"'",
|
|
|
|
value->source());
|
2021-03-18 15:43:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::Identifier(ast::IdentifierExpression* expr) {
|
2021-01-11 15:10:19 +00:00
|
|
|
auto symbol = expr->symbol();
|
2021-02-03 17:51:09 +00:00
|
|
|
VariableInfo* var;
|
2021-01-11 15:10:19 +00:00
|
|
|
if (variable_stack_.get(symbol, &var)) {
|
2021-05-18 10:28:48 +00:00
|
|
|
SetType(expr, var->type, var->type_name);
|
2020-06-22 20:52:24 +00:00
|
|
|
|
2021-02-16 21:15:01 +00:00
|
|
|
var->users.push_back(expr);
|
2020-12-08 21:07:24 +00:00
|
|
|
set_referenced_from_function_if_needed(var, true);
|
2021-03-09 10:26:57 +00:00
|
|
|
|
2021-03-22 17:25:56 +00:00
|
|
|
if (current_block_) {
|
2021-05-18 10:28:48 +00:00
|
|
|
// If identifier is part of a loop continuing block, make sure it
|
|
|
|
// doesn't refer to a variable that is bypassed by a continue statement
|
|
|
|
// in the loop's body block.
|
2021-05-19 21:22:07 +00:00
|
|
|
if (auto* continuing_block =
|
|
|
|
current_block_
|
|
|
|
->FindFirstParent<sem::LoopContinuingBlockStatement>()) {
|
2021-03-22 17:25:56 +00:00
|
|
|
auto* loop_block =
|
2021-05-19 21:22:07 +00:00
|
|
|
continuing_block->FindFirstParent<sem::LoopBlockStatement>();
|
2021-05-15 14:48:46 +00:00
|
|
|
if (loop_block->FirstContinue() != size_t(~0)) {
|
|
|
|
auto& decls = loop_block->Decls();
|
2021-03-22 17:25:56 +00:00
|
|
|
// If our identifier is in loop_block->decls, make sure its index is
|
|
|
|
// less than first_continue
|
|
|
|
auto iter = std::find_if(
|
|
|
|
decls.begin(), decls.end(),
|
|
|
|
[&symbol](auto* v) { return v->symbol() == symbol; });
|
|
|
|
if (iter != decls.end()) {
|
|
|
|
auto var_decl_index =
|
|
|
|
static_cast<size_t>(std::distance(decls.begin(), iter));
|
2021-05-15 14:48:46 +00:00
|
|
|
if (var_decl_index >= loop_block->FirstContinue()) {
|
2021-03-22 17:25:56 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"continue statement bypasses declaration of '" +
|
|
|
|
builder_->Symbols().NameFor(symbol) +
|
|
|
|
"' in continuing block",
|
|
|
|
expr->source());
|
|
|
|
return false;
|
|
|
|
}
|
2021-03-09 10:26:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-07 12:57:27 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-01-11 22:02:42 +00:00
|
|
|
auto iter = symbol_to_function_.find(symbol);
|
2021-01-11 16:24:32 +00:00
|
|
|
if (iter != symbol_to_function_.end()) {
|
2021-02-24 13:31:22 +00:00
|
|
|
diagnostics_.add_error("missing '(' for function call",
|
|
|
|
expr->source().End());
|
|
|
|
return false;
|
2020-04-07 12:57:27 +00:00
|
|
|
}
|
|
|
|
|
2021-02-03 21:02:25 +00:00
|
|
|
std::string name = builder_->Symbols().NameFor(symbol);
|
2021-04-16 19:07:51 +00:00
|
|
|
if (sem::ParseIntrinsicType(name) != IntrinsicType::kNone) {
|
2021-02-24 13:31:22 +00:00
|
|
|
diagnostics_.add_error("missing '(' for intrinsic call",
|
|
|
|
expr->source().End());
|
|
|
|
return false;
|
2020-10-14 18:26:31 +00:00
|
|
|
}
|
2021-02-03 21:02:25 +00:00
|
|
|
|
2021-02-17 20:13:34 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0006: identifier must be declared before use: " + name,
|
|
|
|
expr->source());
|
2021-02-03 21:02:25 +00:00
|
|
|
return false;
|
2020-04-07 16:41:33 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::MemberAccessor(ast::MemberAccessorExpression* expr) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(expr->structure());
|
2021-03-09 10:54:37 +00:00
|
|
|
if (!Expression(expr->structure())) {
|
2020-04-07 16:41:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* structure = TypeOf(expr->structure());
|
|
|
|
auto* storage_type = structure->UnwrapRef();
|
2020-04-24 00:40:45 +00:00
|
|
|
|
2021-04-19 22:51:23 +00:00
|
|
|
sem::Type* ret = nullptr;
|
2021-02-24 14:15:02 +00:00
|
|
|
std::vector<uint32_t> swizzle;
|
2021-02-03 23:55:56 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
if (auto* str = storage_type->As<sem::Struct>()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(expr->member());
|
2021-01-11 16:24:32 +00:00
|
|
|
auto symbol = expr->member()->symbol();
|
2020-04-07 16:41:33 +00:00
|
|
|
|
2021-04-16 19:07:51 +00:00
|
|
|
const sem::StructMember* member = nullptr;
|
2021-05-07 14:49:34 +00:00
|
|
|
for (auto* m : str->Members()) {
|
2021-04-09 13:56:08 +00:00
|
|
|
if (m->Declaration()->symbol() == symbol) {
|
2021-05-05 09:09:41 +00:00
|
|
|
ret = m->Type();
|
2021-04-09 13:56:08 +00:00
|
|
|
member = m;
|
2020-04-23 22:26:52 +00:00
|
|
|
break;
|
2020-04-07 16:41:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-23 22:26:52 +00:00
|
|
|
if (ret == nullptr) {
|
2021-02-17 20:13:34 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"struct member " + builder_->Symbols().NameFor(symbol) + " not found",
|
|
|
|
expr->source());
|
2020-04-23 22:26:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-05-01 16:17:03 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
// If we're extracting from a reference, we return a reference.
|
|
|
|
if (auto* ref = structure->As<sem::Reference>()) {
|
|
|
|
ret = builder_->create<sem::Reference>(ret, ref->StorageClass());
|
2020-05-01 16:17:03 +00:00
|
|
|
}
|
2021-04-09 13:56:08 +00:00
|
|
|
|
2021-04-16 19:07:51 +00:00
|
|
|
builder_->Sem().Add(expr, builder_->create<sem::StructMemberAccess>(
|
2021-04-09 13:56:08 +00:00
|
|
|
expr, ret, current_statement_, member));
|
2021-05-18 10:28:48 +00:00
|
|
|
} else if (auto* vec = storage_type->As<sem::Vector>()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(expr->member());
|
2021-05-07 14:49:34 +00:00
|
|
|
std::string s = builder_->Symbols().NameFor(expr->member()->symbol());
|
|
|
|
auto size = s.size();
|
|
|
|
swizzle.reserve(s.size());
|
2021-02-24 14:15:02 +00:00
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
for (auto c : s) {
|
2021-02-24 14:15:02 +00:00
|
|
|
switch (c) {
|
|
|
|
case 'x':
|
|
|
|
case 'r':
|
|
|
|
swizzle.emplace_back(0);
|
|
|
|
break;
|
|
|
|
case 'y':
|
|
|
|
case 'g':
|
|
|
|
swizzle.emplace_back(1);
|
|
|
|
break;
|
|
|
|
case 'z':
|
|
|
|
case 'b':
|
|
|
|
swizzle.emplace_back(2);
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
case 'a':
|
|
|
|
swizzle.emplace_back(3);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"invalid vector swizzle character",
|
|
|
|
expr->member()->source().Begin() + swizzle.size());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size < 1 || size > 4) {
|
|
|
|
diagnostics_.add_error("invalid vector swizzle size",
|
|
|
|
expr->member()->source());
|
|
|
|
return false;
|
|
|
|
}
|
2021-01-11 16:24:32 +00:00
|
|
|
|
2021-03-01 20:01:39 +00:00
|
|
|
// All characters are valid, check if they're being mixed
|
|
|
|
auto is_rgba = [](char c) {
|
|
|
|
return c == 'r' || c == 'g' || c == 'b' || c == 'a';
|
|
|
|
};
|
|
|
|
auto is_xyzw = [](char c) {
|
|
|
|
return c == 'x' || c == 'y' || c == 'z' || c == 'w';
|
|
|
|
};
|
2021-05-07 14:49:34 +00:00
|
|
|
if (!std::all_of(s.begin(), s.end(), is_rgba) &&
|
|
|
|
!std::all_of(s.begin(), s.end(), is_xyzw)) {
|
2021-03-01 20:01:39 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"invalid mixing of vector swizzle characters rgba with xyzw",
|
|
|
|
expr->member()->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-21 13:05:34 +00:00
|
|
|
if (size == 1) {
|
|
|
|
// A single element swizzle is just the type of the vector.
|
2020-04-23 22:26:52 +00:00
|
|
|
ret = vec->type();
|
2021-05-18 10:28:48 +00:00
|
|
|
// If we're extracting from a reference, we return a reference.
|
|
|
|
if (auto* ref = structure->As<sem::Reference>()) {
|
|
|
|
ret = builder_->create<sem::Reference>(ret, ref->StorageClass());
|
2020-05-01 16:17:03 +00:00
|
|
|
}
|
2020-04-21 13:05:34 +00:00
|
|
|
} else {
|
2021-02-24 14:15:02 +00:00
|
|
|
// The vector will have a number of components equal to the length of
|
2021-04-08 14:08:47 +00:00
|
|
|
// the swizzle.
|
2021-04-19 22:51:23 +00:00
|
|
|
ret = builder_->create<sem::Vector>(vec->type(),
|
|
|
|
static_cast<uint32_t>(size));
|
2020-04-21 13:05:34 +00:00
|
|
|
}
|
2021-04-09 13:56:08 +00:00
|
|
|
builder_->Sem().Add(
|
2021-04-16 19:07:51 +00:00
|
|
|
expr, builder_->create<sem::Swizzle>(expr, ret, current_statement_,
|
|
|
|
std::move(swizzle)));
|
2020-04-23 22:26:52 +00:00
|
|
|
} else {
|
2021-02-17 20:13:34 +00:00
|
|
|
diagnostics_.add_error(
|
2021-02-24 14:15:02 +00:00
|
|
|
"invalid use of member accessor on a non-vector/non-struct " +
|
2021-05-18 10:28:48 +00:00
|
|
|
TypeNameOf(expr->structure()),
|
2021-02-17 20:13:34 +00:00
|
|
|
expr->source());
|
2020-04-23 22:26:52 +00:00
|
|
|
return false;
|
2020-04-07 16:41:33 +00:00
|
|
|
}
|
|
|
|
|
2021-02-09 17:38:05 +00:00
|
|
|
SetType(expr, ret);
|
2020-04-23 22:26:52 +00:00
|
|
|
|
|
|
|
return true;
|
2020-04-07 12:57:27 +00:00
|
|
|
}
|
|
|
|
|
2021-05-27 18:25:06 +00:00
|
|
|
bool Resolver::Binary(ast::BinaryExpression* expr) {
|
|
|
|
Mark(expr->lhs());
|
|
|
|
Mark(expr->rhs());
|
|
|
|
|
|
|
|
if (!Expression(expr->lhs()) || !Expression(expr->rhs())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-04-19 22:51:23 +00:00
|
|
|
using Bool = sem::Bool;
|
|
|
|
using F32 = sem::F32;
|
|
|
|
using I32 = sem::I32;
|
|
|
|
using U32 = sem::U32;
|
|
|
|
using Matrix = sem::Matrix;
|
|
|
|
using Vector = sem::Vector;
|
2021-03-16 13:26:03 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* lhs_type = const_cast<sem::Type*>(TypeOf(expr->lhs())->UnwrapRef());
|
|
|
|
auto* rhs_type = const_cast<sem::Type*>(TypeOf(expr->rhs())->UnwrapRef());
|
2021-03-16 13:26:03 +00:00
|
|
|
|
|
|
|
auto* lhs_vec = lhs_type->As<Vector>();
|
2021-04-13 13:32:33 +00:00
|
|
|
auto* lhs_vec_elem_type = lhs_vec ? lhs_vec->type() : nullptr;
|
2021-03-16 13:26:03 +00:00
|
|
|
auto* rhs_vec = rhs_type->As<Vector>();
|
2021-04-13 13:32:33 +00:00
|
|
|
auto* rhs_vec_elem_type = rhs_vec ? rhs_vec->type() : nullptr;
|
2021-03-16 13:26:03 +00:00
|
|
|
|
2021-04-01 19:58:37 +00:00
|
|
|
const bool matching_vec_elem_types =
|
|
|
|
lhs_vec_elem_type && rhs_vec_elem_type &&
|
|
|
|
(lhs_vec_elem_type == rhs_vec_elem_type) &&
|
|
|
|
(lhs_vec->size() == rhs_vec->size());
|
2021-03-16 13:26:03 +00:00
|
|
|
|
2021-04-01 14:59:27 +00:00
|
|
|
const bool matching_types = matching_vec_elem_types || (lhs_type == rhs_type);
|
|
|
|
|
2021-03-16 13:26:03 +00:00
|
|
|
// Binary logical expressions
|
|
|
|
if (expr->IsLogicalAnd() || expr->IsLogicalOr()) {
|
|
|
|
if (matching_types && lhs_type->Is<Bool>()) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, lhs_type);
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (expr->IsOr() || expr->IsAnd()) {
|
|
|
|
if (matching_types && lhs_type->Is<Bool>()) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, lhs_type);
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (matching_types && lhs_vec_elem_type && lhs_vec_elem_type->Is<Bool>()) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, lhs_type);
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Arithmetic expressions
|
|
|
|
if (expr->IsArithmetic()) {
|
|
|
|
// Binary arithmetic expressions over scalars
|
2021-05-27 18:25:06 +00:00
|
|
|
if (matching_types && lhs_type->is_numeric_scalar()) {
|
|
|
|
SetType(expr, lhs_type);
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Binary arithmetic expressions over vectors
|
|
|
|
if (matching_types && lhs_vec_elem_type &&
|
2021-05-27 18:25:06 +00:00
|
|
|
lhs_vec_elem_type->is_numeric_scalar()) {
|
|
|
|
SetType(expr, lhs_type);
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-27 21:07:56 +00:00
|
|
|
// Binary arithmetic expressions with mixed scalar and vector operands
|
|
|
|
if (lhs_vec_elem_type && (lhs_vec_elem_type == rhs_type)) {
|
|
|
|
if (expr->IsModulo()) {
|
|
|
|
if (rhs_type->is_integer_scalar()) {
|
|
|
|
SetType(expr, lhs_type);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (rhs_type->is_numeric_scalar()) {
|
|
|
|
SetType(expr, lhs_type);
|
|
|
|
return true;
|
|
|
|
}
|
2021-03-16 13:26:03 +00:00
|
|
|
}
|
2021-05-27 21:07:56 +00:00
|
|
|
if (rhs_vec_elem_type && (rhs_vec_elem_type == lhs_type)) {
|
|
|
|
if (expr->IsModulo()) {
|
|
|
|
if (lhs_type->is_integer_scalar()) {
|
|
|
|
SetType(expr, rhs_type);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (lhs_type->is_numeric_scalar()) {
|
|
|
|
SetType(expr, rhs_type);
|
|
|
|
return true;
|
|
|
|
}
|
2021-03-16 13:26:03 +00:00
|
|
|
}
|
2021-05-27 21:07:56 +00:00
|
|
|
}
|
2021-03-16 13:26:03 +00:00
|
|
|
|
2021-05-27 21:07:56 +00:00
|
|
|
// Matrix arithmetic
|
2021-05-31 15:53:20 +00:00
|
|
|
auto* lhs_mat = lhs_type->As<Matrix>();
|
|
|
|
auto* lhs_mat_elem_type = lhs_mat ? lhs_mat->type() : nullptr;
|
|
|
|
auto* rhs_mat = rhs_type->As<Matrix>();
|
|
|
|
auto* rhs_mat_elem_type = rhs_mat ? rhs_mat->type() : nullptr;
|
|
|
|
// Addition and subtraction of float matrices
|
|
|
|
if ((expr->IsAdd() || expr->IsSubtract()) && lhs_mat_elem_type &&
|
|
|
|
lhs_mat_elem_type->Is<F32>() && rhs_mat_elem_type &&
|
|
|
|
rhs_mat_elem_type->Is<F32>() &&
|
|
|
|
(lhs_mat->columns() == rhs_mat->columns()) &&
|
|
|
|
(lhs_mat->rows() == rhs_mat->rows())) {
|
|
|
|
SetType(expr, rhs_type);
|
|
|
|
return true;
|
|
|
|
}
|
2021-05-27 21:07:56 +00:00
|
|
|
if (expr->IsMultiply()) {
|
2021-03-16 13:26:03 +00:00
|
|
|
// Multiplication of a matrix and a scalar
|
|
|
|
if (lhs_type->Is<F32>() && rhs_mat_elem_type &&
|
|
|
|
rhs_mat_elem_type->Is<F32>()) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, rhs_type);
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (lhs_mat_elem_type && lhs_mat_elem_type->Is<F32>() &&
|
|
|
|
rhs_type->Is<F32>()) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, lhs_type);
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vector times matrix
|
|
|
|
if (lhs_vec_elem_type && lhs_vec_elem_type->Is<F32>() &&
|
2021-04-01 19:58:37 +00:00
|
|
|
rhs_mat_elem_type && rhs_mat_elem_type->Is<F32>() &&
|
|
|
|
(lhs_vec->size() == rhs_mat->rows())) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, builder_->create<sem::Vector>(lhs_vec->type(),
|
|
|
|
rhs_mat->columns()));
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Matrix times vector
|
|
|
|
if (lhs_mat_elem_type && lhs_mat_elem_type->Is<F32>() &&
|
2021-04-01 19:58:37 +00:00
|
|
|
rhs_vec_elem_type && rhs_vec_elem_type->Is<F32>() &&
|
|
|
|
(lhs_mat->columns() == rhs_vec->size())) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr,
|
|
|
|
builder_->create<sem::Vector>(rhs_vec->type(), lhs_mat->rows()));
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Matrix times matrix
|
|
|
|
if (lhs_mat_elem_type && lhs_mat_elem_type->Is<F32>() &&
|
2021-04-01 19:58:37 +00:00
|
|
|
rhs_mat_elem_type && rhs_mat_elem_type->Is<F32>() &&
|
|
|
|
(lhs_mat->columns() == rhs_mat->rows())) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, builder_->create<sem::Matrix>(
|
|
|
|
builder_->create<sem::Vector>(lhs_mat_elem_type,
|
|
|
|
lhs_mat->rows()),
|
|
|
|
rhs_mat->columns()));
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Comparison expressions
|
|
|
|
if (expr->IsComparison()) {
|
|
|
|
if (matching_types) {
|
|
|
|
// Special case for bools: only == and !=
|
|
|
|
if (lhs_type->Is<Bool>() && (expr->IsEqual() || expr->IsNotEqual())) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, builder_->create<sem::Bool>());
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For the rest, we can compare i32, u32, and f32
|
|
|
|
if (lhs_type->IsAnyOf<I32, U32, F32>()) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, builder_->create<sem::Bool>());
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Same for vectors
|
|
|
|
if (matching_vec_elem_types) {
|
|
|
|
if (lhs_vec_elem_type->Is<Bool>() &&
|
|
|
|
(expr->IsEqual() || expr->IsNotEqual())) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, builder_->create<sem::Vector>(
|
|
|
|
builder_->create<sem::Bool>(), lhs_vec->size()));
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-27 18:25:06 +00:00
|
|
|
if (lhs_vec_elem_type->is_numeric_scalar()) {
|
|
|
|
SetType(expr, builder_->create<sem::Vector>(
|
|
|
|
builder_->create<sem::Bool>(), lhs_vec->size()));
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Binary bitwise operations
|
|
|
|
if (expr->IsBitwise()) {
|
|
|
|
if (matching_types && lhs_type->IsAnyOf<I32, U32>()) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, lhs_type);
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bit shift expressions
|
|
|
|
if (expr->IsBitshift()) {
|
|
|
|
// Type validation rules are the same for left or right shift, despite
|
|
|
|
// differences in computation rules (i.e. right shift can be arithmetic or
|
|
|
|
// logical depending on lhs type).
|
|
|
|
|
|
|
|
if (lhs_type->IsAnyOf<I32, U32>() && rhs_type->Is<U32>()) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, lhs_type);
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lhs_vec_elem_type && lhs_vec_elem_type->IsAnyOf<I32, U32>() &&
|
|
|
|
rhs_vec_elem_type && rhs_vec_elem_type->Is<U32>()) {
|
2021-05-27 18:25:06 +00:00
|
|
|
SetType(expr, lhs_type);
|
2021-03-16 13:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
diagnostics_.add_error(
|
2021-04-01 19:40:37 +00:00
|
|
|
"Binary expression operand types are invalid for this operation: " +
|
2021-05-10 17:38:01 +00:00
|
|
|
lhs_type->FriendlyName(builder_->Symbols()) + " " +
|
2021-04-01 19:40:37 +00:00
|
|
|
FriendlyName(expr->op()) + " " +
|
2021-05-10 17:38:01 +00:00
|
|
|
rhs_type->FriendlyName(builder_->Symbols()),
|
2021-03-16 13:26:03 +00:00
|
|
|
expr->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
bool Resolver::UnaryOp(ast::UnaryOpExpression* unary) {
|
|
|
|
Mark(unary->expr());
|
2021-04-19 19:16:12 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
// Resolve the inner expression
|
|
|
|
if (!Expression(unary->expr())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* expr_type = TypeOf(unary->expr());
|
|
|
|
if (!expr_type) {
|
2020-04-07 19:27:21 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-01-29 16:43:41 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
std::string type_name;
|
|
|
|
const sem::Type* type = nullptr;
|
|
|
|
|
|
|
|
switch (unary->op()) {
|
|
|
|
case ast::UnaryOp::kNegation:
|
|
|
|
case ast::UnaryOp::kNot:
|
|
|
|
// Result type matches the deref'd inner type.
|
|
|
|
type_name = TypeNameOf(unary->expr());
|
|
|
|
type = expr_type->UnwrapRef();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ast::UnaryOp::kAddressOf:
|
|
|
|
if (auto* ref = expr_type->As<sem::Reference>()) {
|
|
|
|
type = builder_->create<sem::Pointer>(ref->StoreType(),
|
|
|
|
ref->StorageClass());
|
|
|
|
} else {
|
|
|
|
diagnostics_.add_error("cannot take the address of expression",
|
|
|
|
unary->expr()->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ast::UnaryOp::kIndirection:
|
|
|
|
if (auto* ptr = expr_type->As<sem::Pointer>()) {
|
|
|
|
type = builder_->create<sem::Reference>(ptr->StoreType(),
|
|
|
|
ptr->StorageClass());
|
|
|
|
} else {
|
|
|
|
diagnostics_.add_error("cannot dereference expression of type '" +
|
|
|
|
TypeNameOf(unary->expr()) + "'",
|
|
|
|
unary->expr()->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetType(unary, type);
|
2020-04-07 19:27:21 +00:00
|
|
|
return true;
|
2020-04-07 19:27:11 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
bool Resolver::VariableDeclStatement(const ast::VariableDeclStatement* stmt) {
|
2021-03-26 12:47:58 +00:00
|
|
|
ast::Variable* var = stmt->variable();
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(var);
|
|
|
|
|
2021-04-06 14:07:07 +00:00
|
|
|
bool is_global = false;
|
|
|
|
if (variable_stack_.get(var->symbol(), nullptr, &is_global)) {
|
|
|
|
const char* error_code = is_global ? "v-0013" : "v-0014";
|
|
|
|
diagnostics_.add_error(error_code,
|
|
|
|
"redeclared identifier '" +
|
|
|
|
builder_->Symbols().NameFor(var->symbol()) + "'",
|
2021-05-18 10:28:48 +00:00
|
|
|
var->source());
|
2021-04-06 14:07:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* info = Variable(var, VariableKind::kLocal);
|
2021-05-12 10:41:21 +00:00
|
|
|
if (!info) {
|
|
|
|
return false;
|
2021-02-26 18:25:56 +00:00
|
|
|
}
|
|
|
|
|
2021-04-19 19:16:12 +00:00
|
|
|
for (auto* deco : var->decorations()) {
|
|
|
|
// TODO(bclayton): Validate decorations
|
|
|
|
Mark(deco);
|
|
|
|
}
|
|
|
|
|
2021-03-17 22:47:33 +00:00
|
|
|
variable_stack_.set(var->symbol(), info);
|
2021-05-15 14:48:46 +00:00
|
|
|
current_block_->AddDecl(var);
|
2021-03-17 22:47:33 +00:00
|
|
|
|
2021-05-10 18:01:51 +00:00
|
|
|
if (!ValidateVariable(info)) {
|
2021-04-06 14:07:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-17 22:47:33 +00:00
|
|
|
if (!var->is_const()) {
|
2021-05-26 15:41:02 +00:00
|
|
|
if (info->storage_class != ast::StorageClass::kFunction &&
|
|
|
|
!IsValidationDisabled(
|
|
|
|
var->decorations(),
|
|
|
|
ast::DisabledValidation::kFunctionVarStorageClass)) {
|
2021-03-17 22:47:33 +00:00
|
|
|
if (info->storage_class != ast::StorageClass::kNone) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"function variable has a non-function storage class",
|
|
|
|
stmt->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
info->storage_class = ast::StorageClass::kFunction;
|
2021-02-26 18:25:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-26 12:47:58 +00:00
|
|
|
if (!ApplyStorageClassUsageToType(info->storage_class, info->type,
|
2021-03-18 20:46:24 +00:00
|
|
|
var->source())) {
|
|
|
|
diagnostics_.add_note("while instantiating variable " +
|
|
|
|
builder_->Symbols().NameFor(var->symbol()),
|
|
|
|
var->source());
|
2021-03-17 22:47:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-02-26 18:25:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-20 08:44:57 +00:00
|
|
|
sem::Type* Resolver::NamedType(const ast::NamedType* named_type) {
|
|
|
|
sem::Type* result = nullptr;
|
|
|
|
if (auto* alias = named_type->As<ast::Alias>()) {
|
|
|
|
result = Type(alias->type());
|
|
|
|
} else if (auto* str = named_type->As<ast::Struct>()) {
|
|
|
|
result = Structure(str);
|
|
|
|
} else {
|
|
|
|
TINT_UNREACHABLE(diagnostics_) << "Unhandled NamedType";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!result) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
named_type_info_.emplace(named_type->name(),
|
|
|
|
NamedTypeInfo{named_type, result});
|
|
|
|
|
|
|
|
if (!ValidateNamedType(named_type)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
builder_->Sem().Add(named_type, result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Resolver::ValidateNamedType(const ast::NamedType* named_type) const {
|
|
|
|
auto iter = named_type_info_.find(named_type->name());
|
|
|
|
if (iter == named_type_info_.end()) {
|
|
|
|
TINT_ICE(diagnostics_) << "ValidateNamedType called() before NamedType()";
|
|
|
|
}
|
|
|
|
if (iter->second.ast != named_type) {
|
|
|
|
diagnostics_.add_error("type with the name '" +
|
|
|
|
builder_->Symbols().NameFor(named_type->name()) +
|
|
|
|
"' was already declared",
|
|
|
|
named_type->source());
|
|
|
|
diagnostics_.add_note("first declared here", iter->second.ast->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
sem::Type* Resolver::TypeOf(const ast::Expression* expr) {
|
2021-02-16 18:45:45 +00:00
|
|
|
auto it = expr_info_.find(expr);
|
|
|
|
if (it != expr_info_.end()) {
|
2021-05-20 15:10:48 +00:00
|
|
|
return const_cast<sem::Type*>(it->second.type);
|
2021-02-09 17:38:05 +00:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-04-28 13:50:43 +00:00
|
|
|
std::string Resolver::TypeNameOf(const ast::Expression* expr) {
|
|
|
|
auto it = expr_info_.find(expr);
|
|
|
|
if (it != expr_info_.end()) {
|
|
|
|
return it->second.type_name;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
sem::Type* Resolver::TypeOf(const ast::Literal* lit) {
|
2021-04-28 13:50:43 +00:00
|
|
|
if (lit->Is<ast::SintLiteral>()) {
|
|
|
|
return builder_->create<sem::I32>();
|
|
|
|
}
|
|
|
|
if (lit->Is<ast::UintLiteral>()) {
|
|
|
|
return builder_->create<sem::U32>();
|
|
|
|
}
|
|
|
|
if (lit->Is<ast::FloatLiteral>()) {
|
|
|
|
return builder_->create<sem::F32>();
|
|
|
|
}
|
|
|
|
if (lit->Is<ast::BoolLiteral>()) {
|
|
|
|
return builder_->create<sem::Bool>();
|
|
|
|
}
|
|
|
|
TINT_UNREACHABLE(diagnostics_)
|
|
|
|
<< "Unhandled literal type: " << lit->TypeInfo().name;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-05-20 15:10:48 +00:00
|
|
|
void Resolver::SetType(ast::Expression* expr, const ast::Type* type) {
|
|
|
|
SetType(expr, Type(type), type->FriendlyName(builder_->Symbols()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Resolver::SetType(ast::Expression* expr, const sem::Type* type) {
|
|
|
|
SetType(expr, type, type->FriendlyName(builder_->Symbols()));
|
2021-04-28 13:50:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Resolver::SetType(ast::Expression* expr,
|
2021-05-20 15:10:48 +00:00
|
|
|
const sem::Type* type,
|
2021-04-28 13:50:43 +00:00
|
|
|
const std::string& type_name) {
|
2021-03-31 20:43:26 +00:00
|
|
|
if (expr_info_.count(expr)) {
|
2021-05-12 10:41:21 +00:00
|
|
|
TINT_ICE(diagnostics_) << "SetType() called twice for the same expression";
|
2021-03-31 20:43:26 +00:00
|
|
|
}
|
2021-04-28 13:50:43 +00:00
|
|
|
expr_info_.emplace(expr, ExpressionInfo{type, type_name, current_statement_});
|
2021-01-29 16:43:41 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
void Resolver::CreateSemanticNodes() const {
|
2021-02-03 17:51:09 +00:00
|
|
|
auto& sem = builder_->Sem();
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
// Collate all the 'ancestor_entry_points' - this is a map of function
|
|
|
|
// symbol to all the entry points that transitively call the function.
|
2021-03-03 19:54:44 +00:00
|
|
|
std::unordered_map<Symbol, std::vector<Symbol>> ancestor_entry_points;
|
|
|
|
for (auto* func : builder_->AST().Functions()) {
|
|
|
|
auto it = function_to_info_.find(func);
|
|
|
|
if (it == function_to_info_.end()) {
|
2021-03-09 10:54:37 +00:00
|
|
|
continue; // Resolver has likely errored. Process what we can.
|
2021-03-03 19:54:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
auto* info = it->second;
|
|
|
|
if (!func->IsEntryPoint()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (auto* call : info->transitive_calls) {
|
|
|
|
auto& vec = ancestor_entry_points[call->declaration->symbol()];
|
|
|
|
vec.emplace_back(func->symbol());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-13 20:32:32 +00:00
|
|
|
// The next pipeline constant ID to try to allocate.
|
|
|
|
uint16_t next_constant_id = 0;
|
|
|
|
|
2021-02-09 17:38:05 +00:00
|
|
|
// Create semantic nodes for all ast::Variables
|
2021-02-03 17:51:09 +00:00
|
|
|
for (auto it : variable_to_info_) {
|
|
|
|
auto* var = it.first;
|
|
|
|
auto* info = it.second;
|
2021-05-13 20:32:32 +00:00
|
|
|
|
|
|
|
sem::Variable* sem_var = nullptr;
|
|
|
|
|
|
|
|
if (auto* override_deco =
|
|
|
|
ast::GetDecoration<ast::OverrideDecoration>(var->decorations())) {
|
|
|
|
// Create a pipeline overridable constant.
|
|
|
|
uint16_t constant_id;
|
|
|
|
if (override_deco->HasValue()) {
|
2021-05-14 17:51:13 +00:00
|
|
|
constant_id = static_cast<uint16_t>(override_deco->value());
|
2021-05-13 20:32:32 +00:00
|
|
|
} else {
|
|
|
|
// No ID was specified, so allocate the next available ID.
|
|
|
|
constant_id = next_constant_id;
|
|
|
|
while (constant_ids_.count(constant_id)) {
|
|
|
|
if (constant_id == UINT16_MAX) {
|
|
|
|
TINT_ICE(builder_->Diagnostics())
|
|
|
|
<< "no more pipeline constant IDs available";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
constant_id++;
|
|
|
|
}
|
|
|
|
next_constant_id = constant_id + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
sem_var = builder_->create<sem::Variable>(var, info->type, constant_id);
|
|
|
|
} else {
|
2021-05-14 17:51:13 +00:00
|
|
|
sem_var = builder_->create<sem::Variable>(
|
2021-05-21 14:32:38 +00:00
|
|
|
var, info->type, info->storage_class,
|
|
|
|
info->access_control ? info->access_control->access_control()
|
|
|
|
: ast::AccessControl::kReadWrite);
|
2021-05-13 20:32:32 +00:00
|
|
|
}
|
|
|
|
|
2021-04-16 19:07:51 +00:00
|
|
|
std::vector<const sem::VariableUser*> users;
|
2021-02-16 21:15:01 +00:00
|
|
|
for (auto* user : info->users) {
|
|
|
|
// Create semantic node for the identifier expression if necessary
|
|
|
|
auto* sem_expr = sem.Get(user);
|
|
|
|
if (sem_expr == nullptr) {
|
|
|
|
auto* type = expr_info_.at(user).type;
|
|
|
|
auto* stmt = expr_info_.at(user).statement;
|
2021-04-07 08:09:01 +00:00
|
|
|
auto* sem_user =
|
2021-04-16 19:07:51 +00:00
|
|
|
builder_->create<sem::VariableUser>(user, type, stmt, sem_var);
|
2021-04-07 08:09:01 +00:00
|
|
|
sem_var->AddUser(sem_user);
|
|
|
|
sem.Add(user, sem_user);
|
|
|
|
} else {
|
2021-04-16 19:07:51 +00:00
|
|
|
auto* sem_user = sem_expr->As<sem::VariableUser>();
|
2021-04-07 08:09:01 +00:00
|
|
|
if (!sem_user) {
|
2021-05-12 10:41:21 +00:00
|
|
|
TINT_ICE(diagnostics_) << "expected sem::VariableUser, got "
|
|
|
|
<< sem_expr->TypeInfo().name;
|
2021-04-07 08:09:01 +00:00
|
|
|
}
|
|
|
|
sem_var->AddUser(sem_user);
|
2021-02-16 21:15:01 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-07 08:09:01 +00:00
|
|
|
sem.Add(var, sem_var);
|
2021-02-03 17:51:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
auto remap_vars = [&sem](const std::vector<VariableInfo*>& in) {
|
2021-04-16 19:07:51 +00:00
|
|
|
std::vector<const sem::Variable*> out;
|
2021-02-03 17:51:09 +00:00
|
|
|
out.reserve(in.size());
|
|
|
|
for (auto* info : in) {
|
|
|
|
out.emplace_back(sem.Get(info->declaration));
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
};
|
|
|
|
|
2021-02-09 17:38:05 +00:00
|
|
|
// Create semantic nodes for all ast::Functions
|
2021-04-16 19:07:51 +00:00
|
|
|
std::unordered_map<FunctionInfo*, sem::Function*> func_info_to_sem_func;
|
2021-02-03 16:43:20 +00:00
|
|
|
for (auto it : function_to_info_) {
|
|
|
|
auto* func = it.first;
|
|
|
|
auto* info = it.second;
|
2021-03-03 19:54:44 +00:00
|
|
|
|
2021-04-16 19:07:51 +00:00
|
|
|
auto* sem_func = builder_->create<sem::Function>(
|
2021-04-30 19:24:29 +00:00
|
|
|
info->declaration, const_cast<sem::Type*>(info->return_type),
|
|
|
|
remap_vars(info->parameters), remap_vars(info->referenced_module_vars),
|
2021-03-17 14:24:04 +00:00
|
|
|
remap_vars(info->local_referenced_module_vars), info->return_statements,
|
2021-05-22 12:48:24 +00:00
|
|
|
info->callsites, ancestor_entry_points[func->symbol()],
|
|
|
|
info->workgroup_size);
|
2021-02-08 22:31:44 +00:00
|
|
|
func_info_to_sem_func.emplace(info, sem_func);
|
|
|
|
sem.Add(func, sem_func);
|
|
|
|
}
|
|
|
|
|
2021-02-09 17:38:05 +00:00
|
|
|
// Create semantic nodes for all ast::CallExpressions
|
2021-02-08 22:31:44 +00:00
|
|
|
for (auto it : function_calls_) {
|
|
|
|
auto* call = it.first;
|
2021-02-16 18:45:45 +00:00
|
|
|
auto info = it.second;
|
|
|
|
auto* sem_func = func_info_to_sem_func.at(info.function);
|
2021-04-16 19:07:51 +00:00
|
|
|
sem.Add(call, builder_->create<sem::Call>(call, sem_func, info.statement));
|
2021-02-09 17:38:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create semantic nodes for all remaining expression types
|
2021-02-16 18:45:45 +00:00
|
|
|
for (auto it : expr_info_) {
|
2021-02-09 17:38:05 +00:00
|
|
|
auto* expr = it.first;
|
2021-02-16 18:45:45 +00:00
|
|
|
auto& info = it.second;
|
2021-02-09 17:38:05 +00:00
|
|
|
if (sem.Get(expr)) {
|
|
|
|
// Expression has already been assigned a semantic node
|
|
|
|
continue;
|
|
|
|
}
|
2021-04-16 19:07:51 +00:00
|
|
|
sem.Add(expr,
|
2021-04-28 13:50:43 +00:00
|
|
|
builder_->create<sem::Expression>(
|
|
|
|
const_cast<ast::Expression*>(expr), info.type, info.statement));
|
2021-02-03 16:43:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
bool Resolver::DefaultAlignAndSize(const sem::Type* ty,
|
2021-03-15 10:43:11 +00:00
|
|
|
uint32_t& align,
|
2021-05-07 20:58:34 +00:00
|
|
|
uint32_t& size) {
|
2021-03-15 10:43:11 +00:00
|
|
|
static constexpr uint32_t vector_size[] = {
|
|
|
|
/* padding */ 0,
|
|
|
|
/* padding */ 0,
|
|
|
|
/*vec2*/ 8,
|
|
|
|
/*vec3*/ 12,
|
|
|
|
/*vec4*/ 16,
|
|
|
|
};
|
|
|
|
static constexpr uint32_t vector_align[] = {
|
|
|
|
/* padding */ 0,
|
|
|
|
/* padding */ 0,
|
|
|
|
/*vec2*/ 8,
|
|
|
|
/*vec3*/ 16,
|
|
|
|
/*vec4*/ 16,
|
|
|
|
};
|
|
|
|
|
2021-05-10 17:38:01 +00:00
|
|
|
if (ty->is_scalar()) {
|
2021-03-18 21:03:24 +00:00
|
|
|
// Note: Also captures booleans, but these are not host-shareable.
|
2021-03-15 10:43:11 +00:00
|
|
|
align = 4;
|
|
|
|
size = 4;
|
|
|
|
return true;
|
2021-05-10 17:38:01 +00:00
|
|
|
} else if (auto* vec = ty->As<sem::Vector>()) {
|
2021-03-15 10:43:11 +00:00
|
|
|
if (vec->size() < 2 || vec->size() > 4) {
|
|
|
|
TINT_UNREACHABLE(diagnostics_)
|
|
|
|
<< "Invalid vector size: vec" << vec->size();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
align = vector_align[vec->size()];
|
|
|
|
size = vector_size[vec->size()];
|
|
|
|
return true;
|
2021-05-10 17:38:01 +00:00
|
|
|
} else if (auto* mat = ty->As<sem::Matrix>()) {
|
2021-03-15 10:43:11 +00:00
|
|
|
if (mat->columns() < 2 || mat->columns() > 4 || mat->rows() < 2 ||
|
|
|
|
mat->rows() > 4) {
|
|
|
|
TINT_UNREACHABLE(diagnostics_)
|
|
|
|
<< "Invalid matrix size: mat" << mat->columns() << "x" << mat->rows();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
align = vector_align[mat->rows()];
|
|
|
|
size = vector_align[mat->rows()] * mat->columns();
|
|
|
|
return true;
|
2021-05-10 17:38:01 +00:00
|
|
|
} else if (auto* s = ty->As<sem::Struct>()) {
|
2021-05-07 14:49:34 +00:00
|
|
|
align = s->Align();
|
|
|
|
size = s->Size();
|
|
|
|
return true;
|
2021-05-10 17:38:01 +00:00
|
|
|
} else if (auto* a = ty->As<sem::Array>()) {
|
2021-05-07 20:58:34 +00:00
|
|
|
align = a->Align();
|
|
|
|
size = a->SizeInBytes();
|
|
|
|
return true;
|
2021-03-15 10:43:11 +00:00
|
|
|
}
|
|
|
|
TINT_UNREACHABLE(diagnostics_) << "Invalid type " << ty->TypeInfo().name;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-07 20:58:34 +00:00
|
|
|
sem::Array* Resolver::Array(const ast::Array* arr) {
|
|
|
|
auto source = arr->source();
|
2021-03-15 10:43:11 +00:00
|
|
|
|
2021-05-07 20:58:34 +00:00
|
|
|
auto* el_ty = Type(arr->type());
|
|
|
|
if (!el_ty) {
|
2021-03-15 10:43:11 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-04-16 02:36:44 +00:00
|
|
|
uint32_t el_align = 0;
|
|
|
|
uint32_t el_size = 0;
|
2021-05-07 20:58:34 +00:00
|
|
|
if (!DefaultAlignAndSize(el_ty, el_align, el_size)) {
|
2021-04-16 02:36:44 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2021-03-15 10:43:11 +00:00
|
|
|
|
|
|
|
// Look for explicit stride via [[stride(n)]] decoration
|
2021-04-19 19:16:12 +00:00
|
|
|
uint32_t explicit_stride = 0;
|
2021-03-15 10:43:11 +00:00
|
|
|
for (auto* deco : arr->decorations()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(deco);
|
2021-05-07 20:58:34 +00:00
|
|
|
if (auto* sd = deco->As<ast::StrideDecoration>()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
if (explicit_stride) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"array must have at most one [[stride]] decoration", source);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-05-07 20:58:34 +00:00
|
|
|
explicit_stride = sd->stride();
|
|
|
|
if (!ValidateArrayStrideDecoration(sd, el_size, el_align, source)) {
|
2021-04-16 02:36:44 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2021-05-07 20:58:34 +00:00
|
|
|
continue;
|
2021-03-15 10:43:11 +00:00
|
|
|
}
|
2021-05-07 20:58:34 +00:00
|
|
|
|
|
|
|
diagnostics_.add_error("decoration is not valid for array types",
|
|
|
|
deco->source());
|
|
|
|
return nullptr;
|
2021-04-19 19:16:12 +00:00
|
|
|
}
|
2021-03-15 10:43:11 +00:00
|
|
|
|
|
|
|
// Calculate implicit stride
|
2021-04-16 02:36:44 +00:00
|
|
|
auto implicit_stride = utils::RoundUp(el_align, el_size);
|
2021-05-07 20:58:34 +00:00
|
|
|
|
|
|
|
auto stride = explicit_stride ? explicit_stride : implicit_stride;
|
|
|
|
|
|
|
|
// WebGPU requires runtime arrays have at least one element, but the AST
|
|
|
|
// records an element count of 0 for it.
|
|
|
|
auto size = std::max<uint32_t>(arr->size(), 1) * stride;
|
|
|
|
auto* sem = builder_->create<sem::Array>(el_ty, arr->size(), el_align, size,
|
|
|
|
stride, stride == implicit_stride);
|
|
|
|
|
|
|
|
if (!ValidateArray(sem, source)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sem;
|
2021-03-15 10:43:11 +00:00
|
|
|
}
|
|
|
|
|
2021-05-07 20:58:34 +00:00
|
|
|
bool Resolver::ValidateArray(const sem::Array* arr, const Source& source) {
|
|
|
|
auto* el_ty = arr->ElemType();
|
2021-04-21 16:45:02 +00:00
|
|
|
|
|
|
|
if (!IsStorable(el_ty)) {
|
|
|
|
builder_->Diagnostics().add_error(
|
|
|
|
el_ty->FriendlyName(builder_->Symbols()) +
|
|
|
|
" cannot be used as an element type of an array",
|
|
|
|
source);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
if (auto* el_str = el_ty->As<sem::Struct>()) {
|
|
|
|
if (el_str->IsBlockDecorated()) {
|
2021-04-21 16:45:02 +00:00
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#attributes
|
|
|
|
// A structure type with the block attribute must not be:
|
|
|
|
// * the element type of an array type
|
|
|
|
// * the member type in another structure
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"A structure type with a [[block]] decoration cannot be used as an "
|
|
|
|
"element of an array",
|
|
|
|
source);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Resolver::ValidateArrayStrideDecoration(const ast::StrideDecoration* deco,
|
|
|
|
uint32_t el_size,
|
|
|
|
uint32_t el_align,
|
|
|
|
const Source& source) {
|
|
|
|
auto stride = deco->stride();
|
|
|
|
bool is_valid_stride =
|
|
|
|
(stride >= el_size) && (stride >= el_align) && (stride % el_align == 0);
|
|
|
|
if (!is_valid_stride) {
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#array-layout-rules
|
|
|
|
// Arrays decorated with the stride attribute must have a stride that is
|
|
|
|
// at least the size of the element type, and be a multiple of the
|
|
|
|
// element type's alignment value.
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"arrays decorated with the stride attribute must have a stride "
|
|
|
|
"that is at least the size of the element type, and be a multiple "
|
|
|
|
"of the element type's alignment value.",
|
|
|
|
source);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
bool Resolver::ValidateStructure(const sem::Struct* str) {
|
|
|
|
for (auto* member : str->Members()) {
|
2021-05-18 10:28:48 +00:00
|
|
|
if (auto* r = member->Type()->As<sem::Array>()) {
|
2021-05-07 20:58:34 +00:00
|
|
|
if (r->IsRuntimeSized()) {
|
2021-05-07 14:49:34 +00:00
|
|
|
if (member != str->Members().back()) {
|
2021-03-18 17:59:54 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0015",
|
|
|
|
"runtime arrays may only appear as the last member of a struct",
|
2021-05-05 09:09:41 +00:00
|
|
|
member->Declaration()->source());
|
2021-03-18 17:59:54 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-05-07 14:49:34 +00:00
|
|
|
if (!str->IsBlockDecorated()) {
|
2021-04-20 15:21:21 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0015",
|
|
|
|
"a struct containing a runtime-sized array "
|
|
|
|
"requires the [[block]] attribute: '" +
|
2021-05-07 14:49:34 +00:00
|
|
|
builder_->Symbols().NameFor(str->Declaration()->name()) + "'",
|
2021-05-05 09:09:41 +00:00
|
|
|
member->Declaration()->source());
|
2021-03-18 17:59:54 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
for (auto* deco : member->Declaration()->decorations()) {
|
2021-03-18 17:59:54 +00:00
|
|
|
if (!(deco->Is<ast::BuiltinDecoration>() ||
|
|
|
|
deco->Is<ast::LocationDecoration>() ||
|
|
|
|
deco->Is<ast::StructMemberOffsetDecoration>() ||
|
|
|
|
deco->Is<ast::StructMemberSizeDecoration>() ||
|
|
|
|
deco->Is<ast::StructMemberAlignDecoration>())) {
|
|
|
|
diagnostics_.add_error("decoration is not valid for structure members",
|
|
|
|
deco->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
for (auto* deco : str->Declaration()->decorations()) {
|
2021-03-18 17:59:54 +00:00
|
|
|
if (!(deco->Is<ast::StructBlockDecoration>())) {
|
|
|
|
diagnostics_.add_error("decoration is not valid for struct declarations",
|
|
|
|
deco->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
sem::Struct* Resolver::Structure(const ast::Struct* str) {
|
|
|
|
for (auto* deco : str->decorations()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(deco);
|
|
|
|
}
|
|
|
|
|
2021-04-16 19:07:51 +00:00
|
|
|
sem::StructMemberList sem_members;
|
2021-05-07 14:49:34 +00:00
|
|
|
sem_members.reserve(str->members().size());
|
2021-03-15 10:43:11 +00:00
|
|
|
|
|
|
|
// Calculate the effective size and alignment of each field, and the overall
|
|
|
|
// size of the structure.
|
|
|
|
// For size, use the size attribute if provided, otherwise use the default
|
|
|
|
// size for the type.
|
|
|
|
// For alignment, use the alignment attribute if provided, otherwise use the
|
|
|
|
// default alignment for the member type.
|
|
|
|
// Diagnostic errors are raised if a basic rule is violated.
|
|
|
|
// Validation of storage-class rules requires analysing the actual variable
|
|
|
|
// usage of the structure, and so is performed as part of the variable
|
|
|
|
// validation.
|
|
|
|
// TODO(crbug.com/tint/628): Actually implement storage-class validation.
|
|
|
|
uint32_t struct_size = 0;
|
|
|
|
uint32_t struct_align = 1;
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
for (auto* member : str->members()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(member);
|
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
// Resolve member type
|
|
|
|
auto* type = Type(member->type());
|
|
|
|
if (!type) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-04-28 14:13:13 +00:00
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
// Validate member type
|
2021-04-28 14:13:13 +00:00
|
|
|
if (!IsStorable(type)) {
|
2021-05-07 14:49:34 +00:00
|
|
|
diagnostics_.add_error(
|
2021-05-05 09:09:41 +00:00
|
|
|
type->FriendlyName(builder_->Symbols()) +
|
2021-03-15 10:43:11 +00:00
|
|
|
" cannot be used as the type of a structure member");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t offset = struct_size;
|
|
|
|
uint32_t align = 0;
|
|
|
|
uint32_t size = 0;
|
2021-05-07 20:58:34 +00:00
|
|
|
if (!DefaultAlignAndSize(type, align, size)) {
|
2021-03-15 10:43:11 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-03-15 20:34:22 +00:00
|
|
|
bool has_offset_deco = false;
|
|
|
|
bool has_align_deco = false;
|
|
|
|
bool has_size_deco = false;
|
2021-03-15 10:43:11 +00:00
|
|
|
for (auto* deco : member->decorations()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(deco);
|
2021-03-15 10:43:11 +00:00
|
|
|
if (auto* o = deco->As<ast::StructMemberOffsetDecoration>()) {
|
2021-05-18 10:28:48 +00:00
|
|
|
// Offset decorations are not part of the WGSL spec, but are emitted
|
|
|
|
// by the SPIR-V reader.
|
2021-03-15 10:43:11 +00:00
|
|
|
if (o->offset() < struct_size) {
|
|
|
|
diagnostics_.add_error("offsets must be in ascending order",
|
|
|
|
o->source());
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
offset = o->offset();
|
|
|
|
align = 1;
|
2021-03-15 20:34:22 +00:00
|
|
|
has_offset_deco = true;
|
2021-03-15 10:43:11 +00:00
|
|
|
} else if (auto* a = deco->As<ast::StructMemberAlignDecoration>()) {
|
2021-03-15 13:37:41 +00:00
|
|
|
if (a->align() <= 0 || !utils::IsPowerOfTwo(a->align())) {
|
2021-03-15 10:43:11 +00:00
|
|
|
diagnostics_.add_error(
|
|
|
|
"align value must be a positive, power-of-two integer",
|
|
|
|
a->source());
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
align = a->align();
|
2021-03-15 20:34:22 +00:00
|
|
|
has_align_deco = true;
|
2021-03-15 10:43:11 +00:00
|
|
|
} else if (auto* s = deco->As<ast::StructMemberSizeDecoration>()) {
|
|
|
|
if (s->size() < size) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"size must be at least as big as the type's size (" +
|
|
|
|
std::to_string(size) + ")",
|
|
|
|
s->source());
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
size = s->size();
|
2021-03-15 20:34:22 +00:00
|
|
|
has_size_deco = true;
|
2021-03-15 10:43:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-15 20:34:22 +00:00
|
|
|
if (has_offset_deco && (has_align_deco || has_size_deco)) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"offset decorations cannot be used with align or size decorations",
|
|
|
|
member->source());
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-03-15 13:37:41 +00:00
|
|
|
offset = utils::RoundUp(align, offset);
|
2021-03-15 10:43:11 +00:00
|
|
|
|
2021-05-05 09:09:41 +00:00
|
|
|
auto* sem_member = builder_->create<sem::StructMember>(
|
2021-05-07 21:05:54 +00:00
|
|
|
member, const_cast<sem::Type*>(type),
|
|
|
|
static_cast<uint32_t>(sem_members.size()), offset, align, size);
|
2021-03-15 10:43:11 +00:00
|
|
|
builder_->Sem().Add(member, sem_member);
|
|
|
|
sem_members.emplace_back(sem_member);
|
|
|
|
|
|
|
|
struct_size = offset + size;
|
|
|
|
struct_align = std::max(struct_align, align);
|
|
|
|
}
|
|
|
|
|
2021-03-17 21:54:13 +00:00
|
|
|
auto size_no_padding = struct_size;
|
2021-03-15 13:37:41 +00:00
|
|
|
struct_size = utils::RoundUp(struct_align, struct_size);
|
2021-03-15 10:43:11 +00:00
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
auto* out = builder_->create<sem::Struct>(
|
|
|
|
str, std::move(sem_members), struct_align, struct_size, size_no_padding);
|
2021-05-05 09:09:41 +00:00
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
if (!ValidateStructure(out)) {
|
2021-05-05 09:09:41 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
return out;
|
2021-03-15 10:43:11 +00:00
|
|
|
}
|
|
|
|
|
2021-03-22 23:20:17 +00:00
|
|
|
bool Resolver::ValidateReturn(const ast::ReturnStatement* ret) {
|
2021-04-30 19:24:29 +00:00
|
|
|
auto* func_type = current_function_->return_type;
|
2021-03-22 23:20:17 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* ret_type = ret->has_value() ? TypeOf(ret->value())->UnwrapRef()
|
2021-05-20 14:31:48 +00:00
|
|
|
: builder_->create<sem::Void>();
|
2021-03-22 23:20:17 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
if (func_type->UnwrapRef() != ret_type) {
|
2021-04-30 19:24:29 +00:00
|
|
|
diagnostics_.add_error("v-000y",
|
|
|
|
"return statement type must match its function "
|
|
|
|
"return type, returned '" +
|
|
|
|
ret_type->FriendlyName(builder_->Symbols()) +
|
|
|
|
"', expected '" +
|
|
|
|
current_function_->return_type_name + "'",
|
|
|
|
ret->source());
|
2021-03-22 23:20:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Resolver::Return(ast::ReturnStatement* ret) {
|
|
|
|
current_function_->return_statements.push_back(ret);
|
|
|
|
|
2021-04-19 19:16:12 +00:00
|
|
|
if (auto* value = ret->value()) {
|
|
|
|
Mark(value);
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
// Validate after processing the return value expression so that its type
|
|
|
|
// is available for validation
|
2021-04-19 19:16:12 +00:00
|
|
|
return Expression(value) && ValidateReturn(ret);
|
|
|
|
}
|
2021-03-22 23:20:17 +00:00
|
|
|
|
2021-04-19 19:16:12 +00:00
|
|
|
return true;
|
2021-03-22 23:20:17 +00:00
|
|
|
}
|
|
|
|
|
2021-03-25 12:55:27 +00:00
|
|
|
bool Resolver::ValidateSwitch(const ast::SwitchStatement* s) {
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* cond_type = TypeOf(s->condition())->UnwrapRef();
|
2021-03-25 12:55:27 +00:00
|
|
|
if (!cond_type->is_integer_scalar()) {
|
|
|
|
diagnostics_.add_error("v-0025",
|
|
|
|
"switch statement selector expression must be of a "
|
|
|
|
"scalar integer type",
|
|
|
|
s->condition()->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool has_default = false;
|
|
|
|
std::unordered_set<uint32_t> selector_set;
|
|
|
|
|
|
|
|
for (auto* case_stmt : s->body()) {
|
|
|
|
if (case_stmt->IsDefault()) {
|
|
|
|
if (has_default) {
|
|
|
|
// More than one default clause
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0008", "switch statement must have exactly one default clause",
|
|
|
|
case_stmt->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
has_default = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto* selector : case_stmt->selectors()) {
|
2021-04-28 13:50:43 +00:00
|
|
|
if (cond_type != TypeOf(selector)) {
|
2021-03-25 12:55:27 +00:00
|
|
|
diagnostics_.add_error("v-0026",
|
|
|
|
"the case selector values must have the same "
|
|
|
|
"type as the selector expression.",
|
|
|
|
case_stmt->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto v = selector->value_as_u32();
|
|
|
|
if (selector_set.find(v) != selector_set.end()) {
|
|
|
|
diagnostics_.add_error(
|
|
|
|
"v-0027",
|
|
|
|
"a literal value must not appear more than once in "
|
|
|
|
"the case selectors for a switch statement: '" +
|
|
|
|
builder_->str(selector) + "'",
|
|
|
|
case_stmt->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
selector_set.emplace(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!has_default) {
|
|
|
|
// No default clause
|
|
|
|
diagnostics_.add_error("switch statement must have a default clause",
|
|
|
|
s->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!s->body().empty()) {
|
|
|
|
auto* last_clause = s->body().back()->As<ast::CaseStatement>();
|
|
|
|
auto* last_stmt = last_clause->body()->last();
|
|
|
|
if (last_stmt && last_stmt->Is<ast::FallthroughStatement>()) {
|
|
|
|
diagnostics_.add_error("v-0028",
|
|
|
|
"a fallthrough statement must not appear as "
|
|
|
|
"the last statement in last clause of a switch",
|
|
|
|
last_stmt->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Resolver::Switch(ast::SwitchStatement* s) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(s->condition());
|
2021-03-25 12:55:27 +00:00
|
|
|
if (!Expression(s->condition())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (auto* case_stmt : s->body()) {
|
2021-04-19 19:16:12 +00:00
|
|
|
Mark(case_stmt);
|
2021-05-15 14:48:46 +00:00
|
|
|
|
|
|
|
sem::Statement* sem_statement =
|
|
|
|
builder_->create<sem::Statement>(case_stmt, current_statement_);
|
|
|
|
builder_->Sem().Add(case_stmt, sem_statement);
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_statement_, sem_statement);
|
2021-03-25 12:55:27 +00:00
|
|
|
if (!CaseStatement(case_stmt)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ValidateSwitch(s)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
bool Resolver::Assignment(ast::AssignmentStatement* a) {
|
|
|
|
Mark(a->lhs());
|
|
|
|
Mark(a->rhs());
|
2021-03-31 13:26:43 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
if (!Expression(a->lhs()) || !Expression(a->rhs())) {
|
2021-03-31 13:26:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-05-18 10:28:48 +00:00
|
|
|
return ValidateAssignment(a);
|
|
|
|
}
|
2021-03-31 13:26:43 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
bool Resolver::ValidateAssignment(const ast::AssignmentStatement* a) {
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#assignment-statement
|
|
|
|
auto const* lhs_type = TypeOf(a->lhs());
|
|
|
|
auto const* rhs_type = TypeOf(a->rhs());
|
2021-03-31 13:26:43 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* lhs_ref = lhs_type->As<sem::Reference>();
|
|
|
|
if (!lhs_ref) {
|
|
|
|
// LHS is not a reference, so it has no storage.
|
2021-03-31 13:26:43 +00:00
|
|
|
diagnostics_.add_error(
|
2021-05-18 10:28:48 +00:00
|
|
|
"cannot assign to value of type '" + TypeNameOf(a->lhs()) + "'",
|
|
|
|
a->lhs()->source());
|
|
|
|
|
2021-03-31 13:26:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-05-18 15:26:40 +00:00
|
|
|
auto* storage_type = lhs_ref->StoreType();
|
2021-03-31 13:26:43 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
// TODO(crbug.com/tint/809): The originating variable of the left-hand side
|
|
|
|
// must not have an access(read) access attribute.
|
|
|
|
// https://gpuweb.github.io/gpuweb/wgsl/#assignment
|
2021-04-19 19:16:12 +00:00
|
|
|
|
2021-05-18 10:28:48 +00:00
|
|
|
auto* value_type = rhs_type->UnwrapRef(); // Implicit load of RHS
|
|
|
|
|
|
|
|
// RHS needs to be of a storable type
|
|
|
|
if (!IsStorable(value_type)) {
|
|
|
|
diagnostics_.add_error("'" + TypeNameOf(a->rhs()) + "' is not storable",
|
|
|
|
a->rhs()->source());
|
2021-03-31 13:26:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-05-18 10:28:48 +00:00
|
|
|
|
|
|
|
// Value type has to match storage type
|
|
|
|
if (storage_type != value_type) {
|
|
|
|
diagnostics_.add_error("cannot assign '" + TypeNameOf(a->rhs()) + "' to '" +
|
|
|
|
TypeNameOf(a->lhs()) + "'",
|
|
|
|
a->source());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2021-03-31 13:26:43 +00:00
|
|
|
}
|
|
|
|
|
2021-03-17 22:47:33 +00:00
|
|
|
bool Resolver::ApplyStorageClassUsageToType(ast::StorageClass sc,
|
2021-05-07 14:49:34 +00:00
|
|
|
sem::Type* ty,
|
2021-04-16 01:15:43 +00:00
|
|
|
const Source& usage) {
|
2021-05-18 10:28:48 +00:00
|
|
|
ty = const_cast<sem::Type*>(ty->UnwrapRef());
|
2021-03-17 22:47:33 +00:00
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
if (auto* str = ty->As<sem::Struct>()) {
|
|
|
|
if (str->StorageClassUsage().count(sc)) {
|
2021-03-17 22:47:33 +00:00
|
|
|
return true; // Already applied
|
|
|
|
}
|
2021-05-07 14:49:34 +00:00
|
|
|
|
|
|
|
str->AddUsage(sc);
|
|
|
|
|
|
|
|
for (auto* member : str->Members()) {
|
2021-05-05 09:09:41 +00:00
|
|
|
if (!ApplyStorageClassUsageToType(sc, member->Type(), usage)) {
|
2021-03-17 22:47:33 +00:00
|
|
|
std::stringstream err;
|
2021-03-18 20:46:24 +00:00
|
|
|
err << "while analysing structure member "
|
|
|
|
<< str->FriendlyName(builder_->Symbols()) << "."
|
2021-05-05 09:09:41 +00:00
|
|
|
<< builder_->Symbols().NameFor(member->Declaration()->symbol());
|
|
|
|
diagnostics_.add_note(err.str(), member->Declaration()->source());
|
2021-03-17 22:47:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2021-03-18 20:46:24 +00:00
|
|
|
return true;
|
2021-03-17 22:47:33 +00:00
|
|
|
}
|
|
|
|
|
2021-05-07 20:58:34 +00:00
|
|
|
if (auto* arr = ty->As<sem::Array>()) {
|
|
|
|
return ApplyStorageClassUsageToType(
|
|
|
|
sc, const_cast<sem::Type*>(arr->ElemType()), usage);
|
2021-03-18 20:46:24 +00:00
|
|
|
}
|
|
|
|
|
2021-03-18 21:03:24 +00:00
|
|
|
if (ast::IsHostShareable(sc) && !IsHostShareable(ty)) {
|
2021-03-18 20:46:24 +00:00
|
|
|
std::stringstream err;
|
|
|
|
err << "Type '" << ty->FriendlyName(builder_->Symbols())
|
|
|
|
<< "' cannot be used in storage class '" << sc
|
2021-03-18 21:03:24 +00:00
|
|
|
<< "' as it is non-host-shareable";
|
2021-03-18 20:46:24 +00:00
|
|
|
diagnostics_.add_error(err.str(), usage);
|
|
|
|
return false;
|
2021-03-17 22:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-19 13:40:08 +00:00
|
|
|
template <typename T>
|
|
|
|
bool Resolver::GetScalarConstExprValue(ast::Expression* expr, T* result) {
|
|
|
|
if (auto* type_constructor = expr->As<ast::TypeConstructorExpression>()) {
|
|
|
|
if (type_constructor->values().size() == 0) {
|
|
|
|
// Zero-valued constructor.
|
|
|
|
*result = static_cast<T>(0);
|
|
|
|
return true;
|
|
|
|
} else if (type_constructor->values().size() == 1) {
|
|
|
|
// Recurse into the constructor argument expression.
|
|
|
|
return GetScalarConstExprValue(type_constructor->values()[0], result);
|
|
|
|
} else {
|
|
|
|
TINT_ICE(diagnostics_) << "malformed scalar type constructor";
|
|
|
|
}
|
|
|
|
} else if (auto* scalar = expr->As<ast::ScalarConstructorExpression>()) {
|
|
|
|
// Cast literal to result type.
|
|
|
|
if (auto* int_lit = scalar->literal()->As<ast::IntLiteral>()) {
|
|
|
|
*result = static_cast<T>(int_lit->value_as_u32());
|
|
|
|
return true;
|
|
|
|
} else if (auto* float_lit = scalar->literal()->As<ast::FloatLiteral>()) {
|
|
|
|
*result = static_cast<T>(float_lit->value());
|
|
|
|
return true;
|
|
|
|
} else if (auto* bool_lit = scalar->literal()->As<ast::BoolLiteral>()) {
|
|
|
|
*result = static_cast<T>(bool_lit->IsTrue());
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
TINT_ICE(diagnostics_) << "unhandled scalar constructor";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
TINT_ICE(diagnostics_) << "unhandled constant expression";
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-09 15:06:37 +00:00
|
|
|
template <typename F>
|
2021-05-15 14:48:46 +00:00
|
|
|
bool Resolver::BlockScope(const ast::BlockStatement* block, F&& callback) {
|
|
|
|
auto* sem_block = builder_->Sem().Get<sem::BlockStatement>(block);
|
|
|
|
if (!sem_block) {
|
|
|
|
TINT_ICE(diagnostics_) << "Resolver::BlockScope() called on a block for "
|
|
|
|
"which semantic information is not available";
|
|
|
|
return false;
|
|
|
|
}
|
2021-05-19 16:11:04 +00:00
|
|
|
TINT_SCOPED_ASSIGNMENT(current_block_,
|
|
|
|
const_cast<sem::BlockStatement*>(sem_block));
|
2021-03-22 17:38:45 +00:00
|
|
|
variable_stack_.push_scope();
|
|
|
|
bool result = callback();
|
|
|
|
variable_stack_.pop_scope();
|
|
|
|
return result;
|
2021-03-09 15:06:37 +00:00
|
|
|
}
|
|
|
|
|
2021-05-07 20:58:34 +00:00
|
|
|
std::string Resolver::VectorPretty(uint32_t size,
|
|
|
|
const sem::Type* element_type) {
|
2021-04-19 22:51:23 +00:00
|
|
|
sem::Vector vec_type(element_type, size);
|
2021-03-18 15:43:14 +00:00
|
|
|
return vec_type.FriendlyName(builder_->Symbols());
|
|
|
|
}
|
|
|
|
|
2021-04-28 12:38:13 +00:00
|
|
|
void Resolver::Mark(const ast::Node* node) {
|
2021-04-19 19:16:12 +00:00
|
|
|
if (node == nullptr) {
|
|
|
|
TINT_ICE(diagnostics_) << "Resolver::Mark() called with nullptr";
|
|
|
|
}
|
|
|
|
if (marked_.emplace(node).second) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
TINT_ICE(diagnostics_)
|
|
|
|
<< "AST node '" << node->TypeInfo().name
|
|
|
|
<< "' was encountered twice in the same AST of a Program\n"
|
2021-04-29 20:57:55 +00:00
|
|
|
<< "At: " << node->source() << "\n"
|
|
|
|
<< "Content: " << builder_->str(node) << "\n"
|
|
|
|
<< "Pointer: " << node;
|
2021-04-19 19:16:12 +00:00
|
|
|
}
|
|
|
|
|
2021-04-28 12:38:13 +00:00
|
|
|
Resolver::VariableInfo::VariableInfo(const ast::Variable* decl,
|
2021-05-18 10:28:48 +00:00
|
|
|
sem::Type* ty,
|
2021-05-14 17:51:13 +00:00
|
|
|
const std::string& tn,
|
2021-05-18 10:28:48 +00:00
|
|
|
ast::StorageClass sc,
|
2021-05-21 14:32:38 +00:00
|
|
|
const ast::AccessControl* ac)
|
2021-03-26 12:47:58 +00:00
|
|
|
: declaration(decl),
|
2021-05-18 10:28:48 +00:00
|
|
|
type(ty),
|
2021-04-28 13:50:43 +00:00
|
|
|
type_name(tn),
|
2021-05-18 10:28:48 +00:00
|
|
|
storage_class(sc),
|
|
|
|
access_control(ac) {}
|
2021-02-03 17:51:09 +00:00
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
Resolver::VariableInfo::~VariableInfo() = default;
|
2021-02-03 17:51:09 +00:00
|
|
|
|
2021-03-09 10:54:37 +00:00
|
|
|
Resolver::FunctionInfo::FunctionInfo(ast::Function* decl) : declaration(decl) {}
|
|
|
|
Resolver::FunctionInfo::~FunctionInfo() = default;
|
2021-02-03 16:43:20 +00:00
|
|
|
|
2021-03-09 15:08:48 +00:00
|
|
|
} // namespace resolver
|
2020-03-02 20:47:43 +00:00
|
|
|
} // namespace tint
|