mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-13 15:39:09 +00:00
Replace the ShouldRun() method with Apply() which will do the transformation if it needs to be done, otherwise returns 'SkipTransform'. This reduces a bunch of duplicated scanning between the old ShouldRun() and Transform(). This change also adjusts code style to make the transforms more consistent. Change-Id: I9a6b10cb8b4ed62676b12ef30fb7764d363386c6 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/107681 Reviewed-by: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
167 lines
6.7 KiB
C++
167 lines
6.7 KiB
C++
// Copyright 2022 The Tint Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "src/tint/transform/decompose_strided_array.h"
|
|
|
|
#include <unordered_map>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "src/tint/program_builder.h"
|
|
#include "src/tint/sem/call.h"
|
|
#include "src/tint/sem/expression.h"
|
|
#include "src/tint/sem/member_accessor_expression.h"
|
|
#include "src/tint/sem/type_initializer.h"
|
|
#include "src/tint/transform/simplify_pointers.h"
|
|
#include "src/tint/utils/hash.h"
|
|
#include "src/tint/utils/map.h"
|
|
|
|
TINT_INSTANTIATE_TYPEINFO(tint::transform::DecomposeStridedArray);
|
|
|
|
namespace tint::transform {
|
|
namespace {
|
|
|
|
using DecomposedArrays = std::unordered_map<const sem::Array*, Symbol>;
|
|
|
|
bool ShouldRun(const Program* program) {
|
|
for (auto* node : program->ASTNodes().Objects()) {
|
|
if (auto* ast = node->As<ast::Array>()) {
|
|
if (ast::GetAttribute<ast::StrideAttribute>(ast->attributes)) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
DecomposeStridedArray::DecomposeStridedArray() = default;
|
|
|
|
DecomposeStridedArray::~DecomposeStridedArray() = default;
|
|
|
|
Transform::ApplyResult DecomposeStridedArray::Apply(const Program* src,
|
|
const DataMap&,
|
|
DataMap&) const {
|
|
if (!ShouldRun(src)) {
|
|
return SkipTransform;
|
|
}
|
|
|
|
ProgramBuilder b;
|
|
CloneContext ctx{&b, src, /* auto_clone_symbols */ true};
|
|
const auto& sem = src->Sem();
|
|
|
|
static constexpr const char* kMemberName = "el";
|
|
|
|
// Maps an array type in the source program to the name of the struct wrapper
|
|
// type in the target program.
|
|
std::unordered_map<const sem::Array*, Symbol> decomposed;
|
|
|
|
// Find and replace all arrays with a @stride attribute with a array that has
|
|
// the @stride removed. If the source array stride does not match the natural
|
|
// stride for the array element type, then replace the array element type with
|
|
// a structure, holding a single field with a @size attribute equal to the
|
|
// array stride.
|
|
ctx.ReplaceAll([&](const ast::Array* ast) -> const ast::Array* {
|
|
if (auto* arr = sem.Get(ast)) {
|
|
if (!arr->IsStrideImplicit()) {
|
|
auto el_ty = utils::GetOrCreate(decomposed, arr, [&] {
|
|
auto name = b.Symbols().New("strided_arr");
|
|
auto* member_ty = ctx.Clone(ast->type);
|
|
auto* member = b.Member(kMemberName, member_ty,
|
|
utils::Vector{
|
|
b.MemberSize(AInt(arr->Stride())),
|
|
});
|
|
b.Structure(name, utils::Vector{member});
|
|
return name;
|
|
});
|
|
auto* count = ctx.Clone(ast->count);
|
|
return b.ty.array(b.ty.type_name(el_ty), count);
|
|
}
|
|
if (ast::GetAttribute<ast::StrideAttribute>(ast->attributes)) {
|
|
// Strip the @stride attribute
|
|
auto* ty = ctx.Clone(ast->type);
|
|
auto* count = ctx.Clone(ast->count);
|
|
return b.ty.array(ty, count);
|
|
}
|
|
}
|
|
return nullptr;
|
|
});
|
|
|
|
// Find all array index-accessors expressions for arrays that have had their
|
|
// element changed to a single field structure. These expressions are adjusted
|
|
// to insert an additional member accessor for the single structure field.
|
|
// Example: `arr[i]` -> `arr[i].el`
|
|
ctx.ReplaceAll([&](const ast::IndexAccessorExpression* idx) -> const ast::Expression* {
|
|
if (auto* ty = src->TypeOf(idx->object)) {
|
|
if (auto* arr = ty->UnwrapRef()->As<sem::Array>()) {
|
|
if (!arr->IsStrideImplicit()) {
|
|
auto* expr = ctx.CloneWithoutTransform(idx);
|
|
return b.MemberAccessor(expr, kMemberName);
|
|
}
|
|
}
|
|
}
|
|
return nullptr;
|
|
});
|
|
|
|
// Find all array type initializer expressions for array types that have had
|
|
// their element changed to a single field structure. These initializers are
|
|
// adjusted to wrap each of the arguments with an additional initializer for
|
|
// the new element structure type.
|
|
// Example:
|
|
// `@stride(32) array<i32, 3>(1, 2, 3)`
|
|
// ->
|
|
// `array<strided_arr, 3>(strided_arr(1), strided_arr(2), strided_arr(3))`
|
|
ctx.ReplaceAll([&](const ast::CallExpression* expr) -> const ast::Expression* {
|
|
if (!expr->args.IsEmpty()) {
|
|
if (auto* call = sem.Get(expr)->UnwrapMaterialize()->As<sem::Call>()) {
|
|
if (auto* ctor = call->Target()->As<sem::TypeInitializer>()) {
|
|
if (auto* arr = ctor->ReturnType()->As<sem::Array>()) {
|
|
// Begin by cloning the array initializer type or name
|
|
// If this is an unaliased array, this may add a new entry to
|
|
// decomposed.
|
|
// If this is an aliased array, decomposed should already be
|
|
// populated with any strided aliases.
|
|
ast::CallExpression::Target target;
|
|
if (expr->target.type) {
|
|
target.type = ctx.Clone(expr->target.type);
|
|
} else {
|
|
target.name = ctx.Clone(expr->target.name);
|
|
}
|
|
|
|
utils::Vector<const ast::Expression*, 8> args;
|
|
if (auto it = decomposed.find(arr); it != decomposed.end()) {
|
|
args.Reserve(expr->args.Length());
|
|
for (auto* arg : expr->args) {
|
|
args.Push(b.Call(it->second, ctx.Clone(arg)));
|
|
}
|
|
} else {
|
|
args = ctx.Clone(expr->args);
|
|
}
|
|
|
|
return target.type ? b.Construct(target.type, std::move(args))
|
|
: b.Call(target.name, std::move(args));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return nullptr;
|
|
});
|
|
|
|
ctx.Clone();
|
|
return Program(std::move(b));
|
|
}
|
|
|
|
} // namespace tint::transform
|