| // Copyright 2021 The Dawn & Tint Authors |
| // |
| // Redistribution and use in source and binary forms, with or without |
| // modification, are permitted provided that the following conditions are met: |
| // |
| // 1. Redistributions of source code must retain the above copyright notice, this |
| // list of conditions and the following disclaimer. |
| // |
| // 2. Redistributions in binary form must reproduce the above copyright notice, |
| // this list of conditions and the following disclaimer in the documentation |
| // and/or other materials provided with the distribution. |
| // |
| // 3. Neither the name of the copyright holder nor the names of its |
| // contributors may be used to endorse or promote products derived from |
| // this software without specific prior written permission. |
| // |
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| |
| #include "src/tint/lang/wgsl/ast/transform/remove_phonies.h" |
| |
| #include <memory> |
| #include <unordered_map> |
| #include <utility> |
| #include <vector> |
| |
| #include "src/tint/lang/wgsl/ast/traverse_expressions.h" |
| #include "src/tint/lang/wgsl/program/clone_context.h" |
| #include "src/tint/lang/wgsl/program/program_builder.h" |
| #include "src/tint/lang/wgsl/resolver/resolve.h" |
| #include "src/tint/lang/wgsl/sem/block_statement.h" |
| #include "src/tint/lang/wgsl/sem/function.h" |
| #include "src/tint/lang/wgsl/sem/statement.h" |
| #include "src/tint/lang/wgsl/sem/variable.h" |
| #include "src/tint/utils/containers/map.h" |
| #include "src/tint/utils/macros/scoped_assignment.h" |
| |
| TINT_INSTANTIATE_TYPEINFO(tint::ast::transform::RemovePhonies); |
| |
| namespace tint::ast::transform { |
| namespace { |
| |
| using SinkSignature = std::vector<const core::type::Type*>; |
| |
| } // namespace |
| |
| RemovePhonies::RemovePhonies() = default; |
| |
| RemovePhonies::~RemovePhonies() = default; |
| |
| Transform::ApplyResult RemovePhonies::Apply(const Program& src, const DataMap&, DataMap&) const { |
| ProgramBuilder b; |
| program::CloneContext ctx{&b, &src, /* auto_clone_symbols */ true}; |
| |
| auto& sem = src.Sem(); |
| |
| Hashmap<SinkSignature, Symbol, 8> sinks; |
| |
| bool made_changes = false; |
| for (auto* node : src.ASTNodes().Objects()) { |
| Switch( |
| node, |
| [&](const AssignmentStatement* stmt) { |
| if (stmt->lhs->Is<PhonyExpression>()) { |
| made_changes = true; |
| |
| std::vector<const Expression*> side_effects; |
| if (!TraverseExpressions(stmt->rhs, [&](const CallExpression* expr) { |
| // CallExpression may map to a function or builtin call |
| // (both may have side-effects), or a value constructor or value |
| // conversion (both do not have side effects). |
| auto* call = sem.Get<sem::Call>(expr); |
| if (!call) { |
| // Semantic node must be a Materialize, in which case the |
| // expression was creation-time (compile time), so could not |
| // have side effects. Just skip. |
| return TraverseAction::Skip; |
| } |
| if (call->Target()->IsAnyOf<sem::Function, sem::BuiltinFn>() && |
| call->HasSideEffects()) { |
| side_effects.push_back(expr); |
| return TraverseAction::Skip; |
| } |
| return TraverseAction::Descend; |
| })) { |
| return; |
| } |
| |
| if (side_effects.empty()) { |
| // Phony assignment with no side effects. |
| // Just remove it. |
| RemoveStatement(ctx, stmt); |
| return; |
| } |
| |
| if (side_effects.size() == 1) { |
| if (auto* call_expr = side_effects[0]->As<CallExpression>()) { |
| // Phony assignment with single call side effect. |
| auto* call = sem.Get(call_expr)->Unwrap()->As<sem::Call>(); |
| if (call->Target()->MustUse()) { |
| // Replace phony assignment assignment to uniquely named let. |
| ctx.Replace<Statement>(stmt, [&, call_expr] { // |
| auto name = b.Symbols().New("tint_phony"); |
| auto* rhs = ctx.Clone(call_expr); |
| return b.Decl(b.Let(name, rhs)); |
| }); |
| } else { |
| // Replace phony assignment with call statement. |
| ctx.Replace(stmt, [&, call_expr] { // |
| return b.CallStmt(ctx.Clone(call_expr)); |
| }); |
| } |
| return; |
| } |
| } |
| |
| // Phony assignment with multiple side effects. |
| // Generate a call to a placeholder function with the side |
| // effects as arguments. |
| ctx.Replace(stmt, [&, side_effects] { |
| SinkSignature sig; |
| for (auto* arg : side_effects) { |
| sig.push_back(sem.GetVal(arg)->Type()->UnwrapRef()); |
| } |
| auto sink = sinks.GetOrAdd(sig, [&] { |
| auto name = b.Symbols().New("phony_sink"); |
| tint::Vector<const Parameter*, 8> params; |
| for (auto* ty : sig) { |
| auto ast_ty = CreateASTTypeFor(ctx, ty); |
| params.Push(b.Param("p" + std::to_string(params.Length()), ast_ty)); |
| } |
| b.Func(name, params, b.ty.void_(), {}); |
| return name; |
| }); |
| tint::Vector<const Expression*, 8> args; |
| for (auto* arg : side_effects) { |
| args.Push(ctx.Clone(arg)); |
| } |
| return b.CallStmt(b.Call(sink, args)); |
| }); |
| } |
| }, |
| [&](const CallStatement* stmt) { |
| // Remove call statements to const value-returning functions. |
| // TODO(crbug.com/tint/1637): Remove if `stmt->expr` has no side-effects. |
| auto* sem_expr = sem.Get(stmt->expr); |
| if ((sem_expr->ConstantValue() != nullptr) && !sem_expr->HasSideEffects()) { |
| made_changes = true; |
| ctx.Remove(sem.Get(stmt)->Block()->Declaration()->statements, stmt); |
| } |
| }); |
| } |
| |
| if (!made_changes) { |
| return SkipTransform; |
| } |
| |
| ctx.Clone(); |
| return resolver::Resolve(b); |
| } |
| |
| } // namespace tint::ast::transform |