| // 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/glsl/writer/ast_printer/helper_test.h" |
| #include "src/tint/lang/wgsl/ast/call_statement.h" |
| #include "src/tint/lang/wgsl/ast/variable_decl_statement.h" |
| #include "src/tint/utils/text/string_stream.h" |
| |
| #include "gmock/gmock.h" |
| |
| namespace tint::glsl::writer { |
| namespace { |
| |
| using namespace tint::core::fluent_types; // NOLINT |
| using namespace tint::core::number_suffixes; // NOLINT |
| |
| using GlslASTPrinterTest_Binary = TestHelper; |
| |
| struct BinaryData { |
| const char* result; |
| core::BinaryOp op; |
| }; |
| inline std::ostream& operator<<(std::ostream& out, BinaryData data) { |
| StringStream str; |
| str << data.op; |
| out << str.str(); |
| return out; |
| } |
| |
| using GlslBinaryTest = TestParamHelper<BinaryData>; |
| TEST_P(GlslBinaryTest, Emit_f32) { |
| auto params = GetParam(); |
| |
| // Skip ops that are illegal for this type |
| if (params.op == core::BinaryOp::kAnd || params.op == core::BinaryOp::kOr || |
| params.op == core::BinaryOp::kXor || params.op == core::BinaryOp::kShiftLeft || |
| params.op == core::BinaryOp::kShiftRight || params.op == core::BinaryOp::kModulo) { |
| return; |
| } |
| |
| GlobalVar("left", ty.f32(), core::AddressSpace::kPrivate); |
| GlobalVar("right", ty.f32(), core::AddressSpace::kPrivate); |
| |
| auto* left = Expr("left"); |
| auto* right = Expr("right"); |
| |
| auto* expr = create<ast::BinaryExpression>(params.op, left, right); |
| |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), params.result); |
| } |
| TEST_P(GlslBinaryTest, Emit_f16) { |
| auto params = GetParam(); |
| |
| // Skip ops that are illegal for this type |
| if (params.op == core::BinaryOp::kAnd || params.op == core::BinaryOp::kOr || |
| params.op == core::BinaryOp::kXor || params.op == core::BinaryOp::kShiftLeft || |
| params.op == core::BinaryOp::kShiftRight || params.op == core::BinaryOp::kModulo) { |
| return; |
| } |
| |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("left", ty.f16(), core::AddressSpace::kPrivate); |
| GlobalVar("right", ty.f16(), core::AddressSpace::kPrivate); |
| |
| auto* left = Expr("left"); |
| auto* right = Expr("right"); |
| |
| auto* expr = create<ast::BinaryExpression>(params.op, left, right); |
| |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), params.result); |
| } |
| TEST_P(GlslBinaryTest, Emit_u32) { |
| auto params = GetParam(); |
| |
| GlobalVar("left", ty.u32(), core::AddressSpace::kPrivate); |
| GlobalVar("right", ty.u32(), core::AddressSpace::kPrivate); |
| |
| auto* left = Expr("left"); |
| auto* right = Expr("right"); |
| |
| auto* expr = create<ast::BinaryExpression>(params.op, left, right); |
| |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), params.result); |
| } |
| TEST_P(GlslBinaryTest, Emit_i32) { |
| auto params = GetParam(); |
| |
| // Skip ops that are illegal for this type |
| if (params.op == core::BinaryOp::kShiftLeft || params.op == core::BinaryOp::kShiftRight) { |
| return; |
| } |
| |
| GlobalVar("left", ty.i32(), core::AddressSpace::kPrivate); |
| GlobalVar("right", ty.i32(), core::AddressSpace::kPrivate); |
| |
| auto* left = Expr("left"); |
| auto* right = Expr("right"); |
| |
| auto* expr = create<ast::BinaryExpression>(params.op, left, right); |
| |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), params.result); |
| } |
| INSTANTIATE_TEST_SUITE_P( |
| GlslASTPrinterTest, |
| GlslBinaryTest, |
| testing::Values(BinaryData{"(left & right)", core::BinaryOp::kAnd}, |
| BinaryData{"(left | right)", core::BinaryOp::kOr}, |
| BinaryData{"(left ^ right)", core::BinaryOp::kXor}, |
| BinaryData{"(left == right)", core::BinaryOp::kEqual}, |
| BinaryData{"(left != right)", core::BinaryOp::kNotEqual}, |
| BinaryData{"(left < right)", core::BinaryOp::kLessThan}, |
| BinaryData{"(left > right)", core::BinaryOp::kGreaterThan}, |
| BinaryData{"(left <= right)", core::BinaryOp::kLessThanEqual}, |
| BinaryData{"(left >= right)", core::BinaryOp::kGreaterThanEqual}, |
| BinaryData{"(left << right)", core::BinaryOp::kShiftLeft}, |
| BinaryData{"(left >> right)", core::BinaryOp::kShiftRight}, |
| BinaryData{"(left + right)", core::BinaryOp::kAdd}, |
| BinaryData{"(left - right)", core::BinaryOp::kSubtract}, |
| BinaryData{"(left * right)", core::BinaryOp::kMultiply}, |
| BinaryData{"(left / right)", core::BinaryOp::kDivide}, |
| BinaryData{"(left % right)", core::BinaryOp::kModulo})); |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_VectorScalar_f32) { |
| GlobalVar("a", Call<vec3<f32>>(1_f, 1_f, 1_f), core::AddressSpace::kPrivate); |
| auto* lhs = Expr("a"); |
| auto* rhs = Expr(1_f); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(a * 1.0f)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_VectorScalar_f16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("a", Call<vec3<f16>>(1_h, 1_h, 1_h), core::AddressSpace::kPrivate); |
| auto* lhs = Expr("a"); |
| auto* rhs = Expr(1_h); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(a * 1.0hf)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_ScalarVector_f32) { |
| GlobalVar("a", Call<vec3<f32>>(1_f, 1_f, 1_f), core::AddressSpace::kPrivate); |
| auto* lhs = Expr(1_f); |
| auto* rhs = Expr("a"); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(1.0f * a)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_ScalarVector_f16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("a", Call<vec3<f16>>(1_h, 1_h, 1_h), core::AddressSpace::kPrivate); |
| auto* lhs = Expr(1_h); |
| auto* rhs = Expr("a"); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(1.0hf * a)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_MatrixScalar_f32) { |
| GlobalVar("mat", ty.mat3x3<f32>(), core::AddressSpace::kPrivate); |
| auto* lhs = Expr("mat"); |
| auto* rhs = Expr(1_f); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(mat * 1.0f)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_MatrixScalar_f16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("mat", ty.mat3x3<f16>(), core::AddressSpace::kPrivate); |
| auto* lhs = Expr("mat"); |
| auto* rhs = Expr(1_h); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(mat * 1.0hf)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_ScalarMatrix_f32) { |
| GlobalVar("mat", ty.mat3x3<f32>(), core::AddressSpace::kPrivate); |
| auto* lhs = Expr(1_f); |
| auto* rhs = Expr("mat"); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(1.0f * mat)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_ScalarMatrix_f16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("mat", ty.mat3x3<f16>(), core::AddressSpace::kPrivate); |
| auto* lhs = Expr(1_h); |
| auto* rhs = Expr("mat"); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(1.0hf * mat)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_MatrixVector_f32) { |
| GlobalVar("mat", ty.mat3x3<f32>(), core::AddressSpace::kPrivate); |
| auto* lhs = Expr("mat"); |
| auto* rhs = Call<vec3<f32>>(1_f, 1_f, 1_f); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(mat * vec3(1.0f))"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_MatrixVector_f16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("mat", ty.mat3x3<f16>(), core::AddressSpace::kPrivate); |
| auto* lhs = Expr("mat"); |
| auto* rhs = Call<vec3<f16>>(1_h, 1_h, 1_h); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(mat * f16vec3(1.0hf))"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_VectorMatrix_f32) { |
| GlobalVar("mat", ty.mat3x3<f32>(), core::AddressSpace::kPrivate); |
| auto* lhs = Call<vec3<f32>>(1_f, 1_f, 1_f); |
| auto* rhs = Expr("mat"); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(vec3(1.0f) * mat)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_VectorMatrix_f16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("mat", ty.mat3x3<f16>(), core::AddressSpace::kPrivate); |
| auto* lhs = Call<vec3<f16>>(1_h, 1_h, 1_h); |
| auto* rhs = Expr("mat"); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, lhs, rhs); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(f16vec3(1.0hf) * mat)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_MatrixMatrix_f32) { |
| GlobalVar("lhs", ty.mat3x3<f32>(), core::AddressSpace::kPrivate); |
| GlobalVar("rhs", ty.mat3x3<f32>(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, Expr("lhs"), Expr("rhs")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(lhs * rhs)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Multiply_MatrixMatrix_f16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("lhs", ty.mat3x3<f16>(), core::AddressSpace::kPrivate); |
| GlobalVar("rhs", ty.mat3x3<f16>(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kMultiply, Expr("lhs"), Expr("rhs")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(lhs * rhs)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, ModF32) { |
| GlobalVar("a", ty.f32(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.f32(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("b")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "tint_float_modulo(a, b)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, ModF16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("a", ty.f16(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.f16(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("b")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "tint_float_modulo(a, b)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, ModVec3F32) { |
| GlobalVar("a", ty.vec3<f32>(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.vec3<f32>(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("b")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "tint_float_modulo(a, b)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, ModVec3F16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("a", ty.vec3<f16>(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.vec3<f16>(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("b")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "tint_float_modulo(a, b)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, ModVec3F32ScalarF32) { |
| GlobalVar("a", ty.vec3<f32>(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.f32(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("b")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "tint_float_modulo(a, b)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, ModVec3F16ScalarF16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("a", ty.vec3<f16>(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.f16(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("b")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "tint_float_modulo(a, b)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, ModScalarF32Vec3F32) { |
| GlobalVar("a", ty.f32(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.vec3<f32>(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("b")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "tint_float_modulo(a, b)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, ModScalarF16Vec3F16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("a", ty.f16(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.vec3<f16>(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("b")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "tint_float_modulo(a, b)"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, ModMixedVec3ScalarF32) { |
| GlobalVar("a", ty.vec3<f32>(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.f32(), core::AddressSpace::kPrivate); |
| |
| auto* expr_vec_mod_vec = |
| create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("a")); |
| auto* expr_vec_mod_scalar = |
| create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("b")); |
| auto* expr_scalar_mod_vec = |
| create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("b"), Expr("a")); |
| WrapInFunction(expr_vec_mod_vec, expr_vec_mod_scalar, expr_scalar_mod_vec); |
| |
| ASTPrinter& gen = Build(); |
| |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| |
| vec3 tint_float_modulo(vec3 lhs, vec3 rhs) { |
| return (lhs - rhs * trunc(lhs / rhs)); |
| } |
| |
| vec3 tint_float_modulo_1(vec3 lhs, float rhs) { |
| return (lhs - rhs * trunc(lhs / rhs)); |
| } |
| |
| vec3 tint_float_modulo_2(float lhs, vec3 rhs) { |
| return (lhs - rhs * trunc(lhs / rhs)); |
| } |
| |
| |
| vec3 a = vec3(0.0f, 0.0f, 0.0f); |
| float b = 0.0f; |
| layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; |
| void test_function() { |
| vec3 tint_symbol = tint_float_modulo(a, a); |
| vec3 tint_symbol_1 = tint_float_modulo_1(a, b); |
| vec3 tint_symbol_2 = tint_float_modulo_2(b, a); |
| return; |
| } |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, ModMixedVec3ScalarF16) { |
| Enable(wgsl::Extension::kF16); |
| |
| GlobalVar("a", ty.vec3<f16>(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.f16(), core::AddressSpace::kPrivate); |
| |
| auto* expr_vec_mod_vec = |
| create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("a")); |
| auto* expr_vec_mod_scalar = |
| create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("a"), Expr("b")); |
| auto* expr_scalar_mod_vec = |
| create<ast::BinaryExpression>(core::BinaryOp::kModulo, Expr("b"), Expr("a")); |
| WrapInFunction(expr_vec_mod_vec, expr_vec_mod_scalar, expr_scalar_mod_vec); |
| |
| ASTPrinter& gen = Build(); |
| |
| gen.Generate(); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(#version 310 es |
| #extension GL_AMD_gpu_shader_half_float : require |
| |
| f16vec3 tint_float_modulo(f16vec3 lhs, f16vec3 rhs) { |
| return (lhs - rhs * trunc(lhs / rhs)); |
| } |
| |
| f16vec3 tint_float_modulo_1(f16vec3 lhs, float16_t rhs) { |
| return (lhs - rhs * trunc(lhs / rhs)); |
| } |
| |
| f16vec3 tint_float_modulo_2(float16_t lhs, f16vec3 rhs) { |
| return (lhs - rhs * trunc(lhs / rhs)); |
| } |
| |
| |
| f16vec3 a = f16vec3(0.0hf, 0.0hf, 0.0hf); |
| float16_t b = 0.0hf; |
| layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; |
| void test_function() { |
| f16vec3 tint_symbol = tint_float_modulo(a, a); |
| f16vec3 tint_symbol_1 = tint_float_modulo_1(a, b); |
| f16vec3 tint_symbol_2 = tint_float_modulo_2(b, a); |
| return; |
| } |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Logical_And) { |
| GlobalVar("a", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.bool_(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kLogicalAnd, Expr("a"), Expr("b")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(tint_tmp)"); |
| EXPECT_EQ(gen.Result(), R"(bool tint_tmp = a; |
| if (tint_tmp) { |
| tint_tmp = b; |
| } |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Logical_Multi) { |
| // (a && b) || (c || d) |
| GlobalVar("a", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("c", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("d", ty.bool_(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>( |
| core::BinaryOp::kLogicalOr, |
| create<ast::BinaryExpression>(core::BinaryOp::kLogicalAnd, Expr("a"), Expr("b")), |
| create<ast::BinaryExpression>(core::BinaryOp::kLogicalOr, Expr("c"), Expr("d"))); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(tint_tmp)"); |
| EXPECT_EQ(gen.Result(), R"(bool tint_tmp_1 = a; |
| if (tint_tmp_1) { |
| tint_tmp_1 = b; |
| } |
| bool tint_tmp = (tint_tmp_1); |
| if (!tint_tmp) { |
| bool tint_tmp_2 = c; |
| if (!tint_tmp_2) { |
| tint_tmp_2 = d; |
| } |
| tint_tmp = (tint_tmp_2); |
| } |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Logical_Or) { |
| GlobalVar("a", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.bool_(), core::AddressSpace::kPrivate); |
| |
| auto* expr = create<ast::BinaryExpression>(core::BinaryOp::kLogicalOr, Expr("a"), Expr("b")); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| StringStream out; |
| gen.EmitExpression(out, expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(out.str(), "(tint_tmp)"); |
| EXPECT_EQ(gen.Result(), R"(bool tint_tmp = a; |
| if (!tint_tmp) { |
| tint_tmp = b; |
| } |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, If_WithLogical) { |
| // if (a && b) { |
| // return 1i; |
| // } else if (b || c) { |
| // return 2i; |
| // } else { |
| // return 3i; |
| // } |
| |
| GlobalVar("a", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("c", ty.bool_(), core::AddressSpace::kPrivate); |
| |
| auto* expr = |
| If(create<ast::BinaryExpression>(core::BinaryOp::kLogicalAnd, Expr("a"), Expr("b")), |
| Block(Return(1_i)), |
| Else(If(create<ast::BinaryExpression>(core::BinaryOp::kLogicalOr, Expr("b"), Expr("c")), |
| Block(Return(2_i)), Else(Block(Return(3_i)))))); |
| Func("func", tint::Empty, ty.i32(), Vector{WrapInStatement(expr)}); |
| |
| ASTPrinter& gen = Build(); |
| |
| gen.EmitStatement(expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(bool tint_tmp = a; |
| if (tint_tmp) { |
| tint_tmp = b; |
| } |
| if ((tint_tmp)) { |
| return 1; |
| } else { |
| bool tint_tmp_1 = b; |
| if (!tint_tmp_1) { |
| tint_tmp_1 = c; |
| } |
| if ((tint_tmp_1)) { |
| return 2; |
| } else { |
| return 3; |
| } |
| } |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Return_WithLogical) { |
| // return (a && b) || c; |
| |
| GlobalVar("a", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("c", ty.bool_(), core::AddressSpace::kPrivate); |
| |
| auto* expr = Return(create<ast::BinaryExpression>( |
| core::BinaryOp::kLogicalOr, |
| create<ast::BinaryExpression>(core::BinaryOp::kLogicalAnd, Expr("a"), Expr("b")), |
| Expr("c"))); |
| Func("func", tint::Empty, ty.bool_(), Vector{WrapInStatement(expr)}); |
| |
| ASTPrinter& gen = Build(); |
| |
| gen.EmitStatement(expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(bool tint_tmp_1 = a; |
| if (tint_tmp_1) { |
| tint_tmp_1 = b; |
| } |
| bool tint_tmp = (tint_tmp_1); |
| if (!tint_tmp) { |
| tint_tmp = c; |
| } |
| return (tint_tmp); |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Assign_WithLogical) { |
| // a = (b || c) && d; |
| |
| GlobalVar("a", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("c", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("d", ty.bool_(), core::AddressSpace::kPrivate); |
| |
| auto* expr = |
| Assign(Expr("a"), |
| create<ast::BinaryExpression>( |
| core::BinaryOp::kLogicalAnd, |
| create<ast::BinaryExpression>(core::BinaryOp::kLogicalOr, Expr("b"), Expr("c")), |
| Expr("d"))); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| gen.EmitStatement(expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(bool tint_tmp_1 = b; |
| if (!tint_tmp_1) { |
| tint_tmp_1 = c; |
| } |
| bool tint_tmp = (tint_tmp_1); |
| if (tint_tmp) { |
| tint_tmp = d; |
| } |
| a = (tint_tmp); |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Decl_WithLogical) { |
| // var a : bool = (b && c) || d; |
| |
| GlobalVar("b", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("c", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("d", ty.bool_(), core::AddressSpace::kPrivate); |
| |
| auto* var = |
| Var("a", ty.bool_(), |
| create<ast::BinaryExpression>( |
| core::BinaryOp::kLogicalOr, |
| create<ast::BinaryExpression>(core::BinaryOp::kLogicalAnd, Expr("b"), Expr("c")), |
| Expr("d"))); |
| |
| auto* decl = Decl(var); |
| WrapInFunction(decl); |
| |
| ASTPrinter& gen = Build(); |
| |
| gen.EmitStatement(decl); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(bool tint_tmp_1 = b; |
| if (tint_tmp_1) { |
| tint_tmp_1 = c; |
| } |
| bool tint_tmp = (tint_tmp_1); |
| if (!tint_tmp) { |
| tint_tmp = d; |
| } |
| bool a = (tint_tmp); |
| )"); |
| } |
| |
| TEST_F(GlslASTPrinterTest_Binary, Call_WithLogical) { |
| // foo(a && b, c || d, (a || c) && (b || d)) |
| |
| Func("foo", |
| Vector{ |
| Param(Sym(), ty.bool_()), |
| Param(Sym(), ty.bool_()), |
| Param(Sym(), ty.bool_()), |
| }, |
| ty.void_(), tint::Empty, tint::Empty); |
| GlobalVar("a", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("b", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("c", ty.bool_(), core::AddressSpace::kPrivate); |
| GlobalVar("d", ty.bool_(), core::AddressSpace::kPrivate); |
| |
| Vector params{ |
| create<ast::BinaryExpression>(core::BinaryOp::kLogicalAnd, Expr("a"), Expr("b")), |
| create<ast::BinaryExpression>(core::BinaryOp::kLogicalOr, Expr("c"), Expr("d")), |
| create<ast::BinaryExpression>( |
| core::BinaryOp::kLogicalAnd, |
| create<ast::BinaryExpression>(core::BinaryOp::kLogicalOr, Expr("a"), Expr("c")), |
| create<ast::BinaryExpression>(core::BinaryOp::kLogicalOr, Expr("b"), Expr("d"))), |
| }; |
| |
| auto* expr = CallStmt(Call("foo", params)); |
| WrapInFunction(expr); |
| |
| ASTPrinter& gen = Build(); |
| |
| gen.EmitStatement(expr); |
| EXPECT_THAT(gen.Diagnostics(), testing::IsEmpty()); |
| EXPECT_EQ(gen.Result(), R"(bool tint_tmp = a; |
| if (tint_tmp) { |
| tint_tmp = b; |
| } |
| bool tint_tmp_1 = c; |
| if (!tint_tmp_1) { |
| tint_tmp_1 = d; |
| } |
| bool tint_tmp_3 = a; |
| if (!tint_tmp_3) { |
| tint_tmp_3 = c; |
| } |
| bool tint_tmp_2 = (tint_tmp_3); |
| if (tint_tmp_2) { |
| bool tint_tmp_4 = b; |
| if (!tint_tmp_4) { |
| tint_tmp_4 = d; |
| } |
| tint_tmp_2 = (tint_tmp_4); |
| } |
| foo((tint_tmp), (tint_tmp_1), (tint_tmp_2)); |
| )"); |
| } |
| |
| } // namespace |
| } // namespace tint::glsl::writer |