2020-03-16 13:58:53 +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.
|
|
|
|
|
|
|
|
#include "src/ast/loop_statement.h"
|
|
|
|
|
2020-07-25 14:33:50 +00:00
|
|
|
#include "src/ast/discard_statement.h"
|
2020-03-16 13:58:53 +00:00
|
|
|
#include "src/ast/if_statement.h"
|
2020-11-13 21:58:28 +00:00
|
|
|
#include "src/ast/test_helper.h"
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
2020-03-26 15:31:43 +00:00
|
|
|
namespace {
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-11-13 21:58:28 +00:00
|
|
|
using LoopStatementTest = TestHelper;
|
2020-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, Creation) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-11-16 16:41:47 +00:00
|
|
|
auto* b = body->last();
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* continuing =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(body, continuing);
|
|
|
|
ASSERT_EQ(l->body()->size(), 1u);
|
|
|
|
EXPECT_EQ(l->body()->get(0), b);
|
|
|
|
ASSERT_EQ(l->continuing()->size(), 1u);
|
|
|
|
EXPECT_EQ(l->continuing()->get(0), continuing->last());
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, Creation_WithSource) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* continuing =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l =
|
|
|
|
create<LoopStatement>(Source{Source::Location{20, 2}}, body, continuing);
|
|
|
|
auto src = l->source();
|
2020-10-30 20:44:53 +00:00
|
|
|
EXPECT_EQ(src.range.begin.line, 20u);
|
|
|
|
EXPECT_EQ(src.range.begin.column, 2u);
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsLoop) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(create<BlockStatement>(StatementList{}),
|
|
|
|
create<BlockStatement>(StatementList{}));
|
|
|
|
EXPECT_TRUE(l->Is<LoopStatement>());
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
2020-03-20 19:07:00 +00:00
|
|
|
TEST_F(LoopStatementTest, HasContinuing_WithoutContinuing) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-20 19:07:00 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(body, nullptr);
|
|
|
|
EXPECT_FALSE(l->has_continuing());
|
2020-03-20 19:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, HasContinuing_WithContinuing) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-20 19:07:00 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* continuing =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-20 19:07:00 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(body, continuing);
|
|
|
|
EXPECT_TRUE(l->has_continuing());
|
2020-03-20 19:07:00 +00:00
|
|
|
}
|
|
|
|
|
2020-03-16 13:58:53 +00:00
|
|
|
TEST_F(LoopStatementTest, IsValid) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* continuing =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(body, continuing);
|
|
|
|
EXPECT_TRUE(l->IsValid());
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_WithoutContinuing) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l =
|
|
|
|
create<LoopStatement>(body, create<BlockStatement>(StatementList{}));
|
|
|
|
EXPECT_TRUE(l->IsValid());
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_WithoutBody) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(create<BlockStatement>(StatementList{}),
|
|
|
|
create<BlockStatement>(StatementList{}));
|
|
|
|
EXPECT_TRUE(l->IsValid());
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_NullBodyStatement) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body = create<BlockStatement>(StatementList{
|
|
|
|
create<DiscardStatement>(),
|
|
|
|
nullptr,
|
|
|
|
});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* continuing =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(body, continuing);
|
|
|
|
EXPECT_FALSE(l->IsValid());
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_InvalidBodyStatement) {
|
2020-12-14 20:25:27 +00:00
|
|
|
auto* body = create<BlockStatement>(
|
2020-12-14 22:30:57 +00:00
|
|
|
|
2020-12-14 20:25:27 +00:00
|
|
|
StatementList{
|
2020-12-14 22:30:57 +00:00
|
|
|
create<DiscardStatement>(),
|
|
|
|
create<IfStatement>(nullptr, create<BlockStatement>(StatementList{}),
|
2020-12-14 20:25:27 +00:00
|
|
|
ElseStatementList{}),
|
|
|
|
});
|
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* continuing =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(body, continuing);
|
|
|
|
EXPECT_FALSE(l->IsValid());
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_NullContinuingStatement) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* continuing = create<BlockStatement>(StatementList{
|
|
|
|
create<DiscardStatement>(),
|
|
|
|
nullptr,
|
|
|
|
});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(body, continuing);
|
|
|
|
EXPECT_FALSE(l->IsValid());
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, IsValid_InvalidContinuingStatement) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-12-14 20:25:27 +00:00
|
|
|
|
|
|
|
auto* continuing = create<BlockStatement>(
|
2020-12-14 22:30:57 +00:00
|
|
|
|
2020-12-14 20:25:27 +00:00
|
|
|
StatementList{
|
2020-12-14 22:30:57 +00:00
|
|
|
create<DiscardStatement>(),
|
|
|
|
create<IfStatement>(nullptr, create<BlockStatement>(StatementList{}),
|
2020-12-14 20:25:27 +00:00
|
|
|
ElseStatementList{}),
|
|
|
|
});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(body, continuing);
|
|
|
|
EXPECT_FALSE(l->IsValid());
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, ToStr) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(body, nullptr);
|
2021-01-29 11:22:40 +00:00
|
|
|
EXPECT_EQ(str(l), R"(Loop{
|
|
|
|
Discard{}
|
|
|
|
}
|
2020-03-16 13:58:53 +00:00
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LoopStatementTest, ToStr_WithContinuing) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* body =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* continuing =
|
|
|
|
create<BlockStatement>(StatementList{create<DiscardStatement>()});
|
2020-03-16 13:58:53 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* l = create<LoopStatement>(body, continuing);
|
2021-01-29 11:22:40 +00:00
|
|
|
EXPECT_EQ(str(l), R"(Loop{
|
|
|
|
Discard{}
|
|
|
|
continuing {
|
2020-07-25 14:33:50 +00:00
|
|
|
Discard{}
|
2020-03-16 13:58:53 +00:00
|
|
|
}
|
2021-01-29 11:22:40 +00:00
|
|
|
}
|
2020-03-16 13:58:53 +00:00
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
2020-03-26 15:31:43 +00:00
|
|
|
} // namespace
|
2020-03-16 13:58:53 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|