2020-09-29 20:28:21 +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.
|
|
|
|
|
2020-12-04 09:06:09 +00:00
|
|
|
#include "src/transform/transform.h"
|
2020-09-29 20:28:21 +00:00
|
|
|
|
2021-03-04 23:03:25 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2021-01-26 16:57:10 +00:00
|
|
|
#include "src/program_builder.h"
|
2020-12-14 20:31:17 +00:00
|
|
|
|
2021-03-02 20:51:18 +00:00
|
|
|
TINT_INSTANTIATE_TYPEINFO(tint::transform::Data);
|
2021-02-24 15:55:24 +00:00
|
|
|
|
2020-09-29 20:28:21 +00:00
|
|
|
namespace tint {
|
|
|
|
namespace transform {
|
|
|
|
|
2021-02-24 15:55:24 +00:00
|
|
|
Data::Data() = default;
|
|
|
|
Data::Data(const Data&) = default;
|
|
|
|
Data::~Data() = default;
|
2021-04-13 18:46:47 +00:00
|
|
|
Data& Data::operator=(const Data&) = default;
|
2021-02-24 15:55:24 +00:00
|
|
|
|
|
|
|
DataMap::DataMap() = default;
|
|
|
|
DataMap::DataMap(DataMap&&) = default;
|
|
|
|
DataMap::~DataMap() = default;
|
2021-04-16 08:35:24 +00:00
|
|
|
DataMap& DataMap::operator=(DataMap&&) = default;
|
2021-02-24 15:55:24 +00:00
|
|
|
|
2021-04-16 08:35:24 +00:00
|
|
|
Output::Output() = default;
|
|
|
|
Output::Output(Program&& p) : program(std::move(p)) {}
|
2020-12-04 09:06:09 +00:00
|
|
|
Transform::Transform() = default;
|
|
|
|
Transform::~Transform() = default;
|
2020-09-29 20:28:21 +00:00
|
|
|
|
2020-12-14 20:31:17 +00:00
|
|
|
ast::Function* Transform::CloneWithStatementsAtStart(
|
2021-01-21 16:20:40 +00:00
|
|
|
CloneContext* ctx,
|
2020-12-14 20:31:17 +00:00
|
|
|
ast::Function* in,
|
|
|
|
ast::StatementList statements) {
|
|
|
|
for (auto* s : *in->body()) {
|
|
|
|
statements.emplace_back(ctx->Clone(s));
|
|
|
|
}
|
2021-02-11 20:27:14 +00:00
|
|
|
// Clone arguments outside of create() call to have deterministic ordering
|
|
|
|
auto source = ctx->Clone(in->source());
|
|
|
|
auto symbol = ctx->Clone(in->symbol());
|
|
|
|
auto params = ctx->Clone(in->params());
|
2021-05-05 09:09:41 +00:00
|
|
|
auto* return_type = ctx->Clone(in->return_type());
|
2021-02-11 20:27:14 +00:00
|
|
|
auto* body = ctx->dst->create<ast::BlockStatement>(
|
|
|
|
ctx->Clone(in->body()->source()), statements);
|
|
|
|
auto decos = ctx->Clone(in->decorations());
|
2021-03-15 17:01:34 +00:00
|
|
|
auto ret_decos = ctx->Clone(in->return_type_decorations());
|
2021-02-11 20:27:14 +00:00
|
|
|
return ctx->dst->create<ast::Function>(source, symbol, params, return_type,
|
2021-03-15 17:01:34 +00:00
|
|
|
body, decos, ret_decos);
|
2020-12-14 20:31:17 +00:00
|
|
|
}
|
|
|
|
|
2021-03-24 17:08:06 +00:00
|
|
|
ast::DecorationList Transform::RemoveDecorations(
|
|
|
|
CloneContext* ctx,
|
|
|
|
const ast::DecorationList& in,
|
|
|
|
std::function<bool(const ast::Decoration*)> should_remove) {
|
|
|
|
ast::DecorationList new_decorations;
|
|
|
|
for (auto* deco : in) {
|
|
|
|
if (!should_remove(deco)) {
|
|
|
|
new_decorations.push_back(ctx->Clone(deco));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new_decorations;
|
|
|
|
}
|
|
|
|
|
2021-05-04 18:13:21 +00:00
|
|
|
ast::Type* Transform::CreateASTTypeFor(CloneContext* ctx, const sem::Type* ty) {
|
|
|
|
if (ty->Is<sem::Void>()) {
|
|
|
|
return ctx->dst->create<ast::Void>();
|
|
|
|
}
|
|
|
|
if (ty->Is<sem::I32>()) {
|
|
|
|
return ctx->dst->create<ast::I32>();
|
|
|
|
}
|
|
|
|
if (ty->Is<sem::U32>()) {
|
|
|
|
return ctx->dst->create<ast::U32>();
|
|
|
|
}
|
|
|
|
if (ty->Is<sem::F32>()) {
|
|
|
|
return ctx->dst->create<ast::F32>();
|
|
|
|
}
|
|
|
|
if (ty->Is<sem::Bool>()) {
|
|
|
|
return ctx->dst->create<ast::Bool>();
|
|
|
|
}
|
|
|
|
if (auto* m = ty->As<sem::Matrix>()) {
|
|
|
|
auto* el = CreateASTTypeFor(ctx, m->type());
|
|
|
|
return ctx->dst->create<ast::Matrix>(el, m->rows(), m->columns());
|
|
|
|
}
|
|
|
|
if (auto* v = ty->As<sem::Vector>()) {
|
|
|
|
auto* el = CreateASTTypeFor(ctx, v->type());
|
|
|
|
return ctx->dst->create<ast::Vector>(el, v->size());
|
|
|
|
}
|
|
|
|
if (auto* a = ty->As<sem::ArrayType>()) {
|
|
|
|
auto* el = CreateASTTypeFor(ctx, a->type());
|
|
|
|
auto decos = ctx->Clone(a->decorations());
|
|
|
|
return ctx->dst->create<ast::Array>(el, a->size(), std::move(decos));
|
|
|
|
}
|
|
|
|
if (auto* ac = ty->As<sem::AccessControl>()) {
|
|
|
|
auto* el = CreateASTTypeFor(ctx, ac->type());
|
|
|
|
return ctx->dst->create<ast::AccessControl>(ac->access_control(), el);
|
|
|
|
}
|
|
|
|
if (auto* a = ty->As<sem::Alias>()) {
|
|
|
|
return ctx->dst->create<ast::TypeName>(ctx->Clone(a->symbol()));
|
|
|
|
}
|
2021-05-07 14:49:34 +00:00
|
|
|
if (auto* s = ty->As<sem::Struct>()) {
|
|
|
|
return ctx->dst->create<ast::TypeName>(
|
|
|
|
ctx->Clone(s->Declaration()->name()));
|
2021-05-04 18:13:21 +00:00
|
|
|
}
|
|
|
|
TINT_UNREACHABLE(ctx->dst->Diagnostics())
|
|
|
|
<< "Unhandled type: " << ty->TypeInfo().name;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-09-29 20:28:21 +00:00
|
|
|
} // namespace transform
|
|
|
|
} // namespace tint
|