mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-01 20:21:23 +00:00
set_source() will be removed, so sources will only be specifiable at construction time. Bug: tint:390 Change-Id: I5c79efd3fa501ebd9308f7f93cfb77bc12198047 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/35009 Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: dan sinclair <dsinclair@chromium.org>
194 lines
4.8 KiB
C++
194 lines
4.8 KiB
C++
// 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.
|
|
|
|
#include <memory>
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "src/ast/assignment_statement.h"
|
|
#include "src/ast/discard_statement.h"
|
|
#include "src/ast/float_literal.h"
|
|
#include "src/ast/identifier_expression.h"
|
|
#include "src/ast/loop_statement.h"
|
|
#include "src/ast/module.h"
|
|
#include "src/ast/return_statement.h"
|
|
#include "src/ast/type/f32_type.h"
|
|
#include "src/ast/variable.h"
|
|
#include "src/ast/variable_decl_statement.h"
|
|
#include "src/writer/msl/generator_impl.h"
|
|
#include "src/writer/msl/test_helper.h"
|
|
|
|
namespace tint {
|
|
namespace writer {
|
|
namespace msl {
|
|
namespace {
|
|
|
|
using MslGeneratorImplTest = TestHelper;
|
|
|
|
TEST_F(MslGeneratorImplTest, Emit_Loop) {
|
|
auto* body = create<ast::BlockStatement>();
|
|
body->append(create<ast::DiscardStatement>());
|
|
|
|
ast::LoopStatement l(body, {});
|
|
|
|
gen.increment_indent();
|
|
|
|
ASSERT_TRUE(gen.EmitStatement(&l)) << gen.error();
|
|
EXPECT_EQ(gen.result(), R"( for(;;) {
|
|
discard_fragment();
|
|
}
|
|
)");
|
|
}
|
|
|
|
TEST_F(MslGeneratorImplTest, Emit_LoopWithContinuing) {
|
|
auto* body = create<ast::BlockStatement>();
|
|
body->append(create<ast::DiscardStatement>());
|
|
|
|
auto* continuing = create<ast::BlockStatement>();
|
|
continuing->append(create<ast::ReturnStatement>());
|
|
|
|
ast::LoopStatement l(body, continuing);
|
|
|
|
gen.increment_indent();
|
|
|
|
ASSERT_TRUE(gen.EmitStatement(&l)) << gen.error();
|
|
EXPECT_EQ(gen.result(), R"( {
|
|
bool tint_msl_is_first_1 = true;
|
|
for(;;) {
|
|
if (!tint_msl_is_first_1) {
|
|
return;
|
|
}
|
|
tint_msl_is_first_1 = false;
|
|
|
|
discard_fragment();
|
|
}
|
|
}
|
|
)");
|
|
}
|
|
|
|
TEST_F(MslGeneratorImplTest, Emit_LoopNestedWithContinuing) {
|
|
ast::type::F32 f32;
|
|
|
|
auto* body = create<ast::BlockStatement>();
|
|
body->append(create<ast::DiscardStatement>());
|
|
|
|
auto* continuing = create<ast::BlockStatement>();
|
|
continuing->append(create<ast::ReturnStatement>());
|
|
|
|
auto* inner = create<ast::LoopStatement>(body, continuing);
|
|
|
|
body = create<ast::BlockStatement>();
|
|
body->append(inner);
|
|
|
|
auto* lhs = create<ast::IdentifierExpression>("lhs");
|
|
auto* rhs = create<ast::IdentifierExpression>("rhs");
|
|
|
|
continuing = create<ast::BlockStatement>();
|
|
continuing->append(create<ast::AssignmentStatement>(lhs, rhs));
|
|
|
|
ast::LoopStatement outer(body, continuing);
|
|
|
|
gen.increment_indent();
|
|
|
|
ASSERT_TRUE(gen.EmitStatement(&outer)) << gen.error();
|
|
EXPECT_EQ(gen.result(), R"( {
|
|
bool tint_msl_is_first_1 = true;
|
|
for(;;) {
|
|
if (!tint_msl_is_first_1) {
|
|
lhs = rhs;
|
|
}
|
|
tint_msl_is_first_1 = false;
|
|
|
|
{
|
|
bool tint_msl_is_first_2 = true;
|
|
for(;;) {
|
|
if (!tint_msl_is_first_2) {
|
|
return;
|
|
}
|
|
tint_msl_is_first_2 = false;
|
|
|
|
discard_fragment();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
)");
|
|
}
|
|
|
|
TEST_F(MslGeneratorImplTest, Emit_LoopWithVarUsedInContinuing) {
|
|
// loop {
|
|
// var lhs : f32 = 2.4;
|
|
// var other : f32;
|
|
// continuing {
|
|
// lhs = rhs
|
|
// }
|
|
// }
|
|
//
|
|
// ->
|
|
// {
|
|
// float lhs;
|
|
// float other;
|
|
// for (;;) {
|
|
// if (continuing) {
|
|
// lhs = rhs;
|
|
// }
|
|
// lhs = 2.4f;
|
|
// other = 0.0f;
|
|
// }
|
|
// }
|
|
|
|
ast::type::F32 f32;
|
|
|
|
auto* var = create<ast::Variable>(Source{}, "lhs",
|
|
ast::StorageClass::kFunction, &f32);
|
|
var->set_constructor(create<ast::ScalarConstructorExpression>(
|
|
create<ast::FloatLiteral>(&f32, 2.4)));
|
|
|
|
auto* body = create<ast::BlockStatement>();
|
|
body->append(create<ast::VariableDeclStatement>(var));
|
|
body->append(create<ast::VariableDeclStatement>(create<ast::Variable>(
|
|
Source{}, "other", ast::StorageClass::kFunction, &f32)));
|
|
|
|
auto* lhs = create<ast::IdentifierExpression>("lhs");
|
|
auto* rhs = create<ast::IdentifierExpression>("rhs");
|
|
|
|
auto* continuing = create<ast::BlockStatement>();
|
|
continuing->append(create<ast::AssignmentStatement>(lhs, rhs));
|
|
|
|
gen.increment_indent();
|
|
|
|
ast::LoopStatement outer(body, continuing);
|
|
|
|
ASSERT_TRUE(gen.EmitStatement(&outer)) << gen.error();
|
|
EXPECT_EQ(gen.result(), R"( {
|
|
bool tint_msl_is_first_1 = true;
|
|
float lhs;
|
|
float other;
|
|
for(;;) {
|
|
if (!tint_msl_is_first_1) {
|
|
lhs = rhs;
|
|
}
|
|
tint_msl_is_first_1 = false;
|
|
|
|
lhs = 2.400000095f;
|
|
other = 0.0f;
|
|
}
|
|
}
|
|
)");
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace msl
|
|
} // namespace writer
|
|
} // namespace tint
|