2020-03-02 20:47:43 +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.
|
|
|
|
|
2022-02-21 15:19:07 +00:00
|
|
|
#include "src/tint/sem/struct.h"
|
|
|
|
#include "src/tint/sem/test_helper.h"
|
2022-04-28 18:49:04 +00:00
|
|
|
#include "src/tint/sem/texture.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2022-04-07 16:04:35 +00:00
|
|
|
namespace tint::sem {
|
2020-03-26 15:31:43 +00:00
|
|
|
namespace {
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
using StructTest = TestHelper;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
TEST_F(StructTest, Creation) {
|
2022-05-01 14:40:55 +00:00
|
|
|
auto name = Sym("S");
|
2022-08-02 17:03:35 +00:00
|
|
|
auto* impl = create<ast::Struct>(name, utils::Empty, utils::Empty);
|
2022-05-01 14:40:55 +00:00
|
|
|
auto* ptr = impl;
|
|
|
|
auto* s = create<sem::Struct>(impl, impl->name, StructMemberList{}, 4u /* align */,
|
|
|
|
8u /* size */, 16u /* size_no_padding */);
|
|
|
|
EXPECT_EQ(s->Declaration(), ptr);
|
|
|
|
EXPECT_EQ(s->Align(), 4u);
|
|
|
|
EXPECT_EQ(s->Size(), 8u);
|
|
|
|
EXPECT_EQ(s->SizeNoPadding(), 16u);
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
2022-03-07 18:34:57 +00:00
|
|
|
TEST_F(StructTest, Hash) {
|
2022-08-02 17:03:35 +00:00
|
|
|
auto* a_impl = create<ast::Struct>(Sym("a"), utils::Empty, utils::Empty);
|
2022-05-01 14:40:55 +00:00
|
|
|
auto* a = create<sem::Struct>(a_impl, a_impl->name, StructMemberList{}, 4u /* align */,
|
|
|
|
4u /* size */, 4u /* size_no_padding */);
|
2022-08-02 17:03:35 +00:00
|
|
|
auto* b_impl = create<ast::Struct>(Sym("b"), utils::Empty, utils::Empty);
|
2022-05-01 14:40:55 +00:00
|
|
|
auto* b = create<sem::Struct>(b_impl, b_impl->name, StructMemberList{}, 4u /* align */,
|
|
|
|
4u /* size */, 4u /* size_no_padding */);
|
|
|
|
|
|
|
|
EXPECT_NE(a->Hash(), b->Hash());
|
2022-03-07 18:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StructTest, Equals) {
|
2022-08-02 17:03:35 +00:00
|
|
|
auto* a_impl = create<ast::Struct>(Sym("a"), utils::Empty, utils::Empty);
|
2022-05-01 14:40:55 +00:00
|
|
|
auto* a = create<sem::Struct>(a_impl, a_impl->name, StructMemberList{}, 4u /* align */,
|
|
|
|
4u /* size */, 4u /* size_no_padding */);
|
2022-08-02 17:03:35 +00:00
|
|
|
auto* b_impl = create<ast::Struct>(Sym("b"), utils::Empty, utils::Empty);
|
2022-05-01 14:40:55 +00:00
|
|
|
auto* b = create<sem::Struct>(b_impl, b_impl->name, StructMemberList{}, 4u /* align */,
|
|
|
|
4u /* size */, 4u /* size_no_padding */);
|
|
|
|
|
|
|
|
EXPECT_TRUE(a->Equals(*a));
|
|
|
|
EXPECT_FALSE(a->Equals(*b));
|
|
|
|
EXPECT_FALSE(a->Equals(Void{}));
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
TEST_F(StructTest, FriendlyName) {
|
2022-05-01 14:40:55 +00:00
|
|
|
auto name = Sym("my_struct");
|
2022-08-02 17:03:35 +00:00
|
|
|
auto* impl = create<ast::Struct>(name, utils::Empty, utils::Empty);
|
2022-05-01 14:40:55 +00:00
|
|
|
auto* s = create<sem::Struct>(impl, impl->name, StructMemberList{}, 4u /* align */,
|
|
|
|
4u /* size */, 4u /* size_no_padding */);
|
|
|
|
EXPECT_EQ(s->FriendlyName(Symbols()), "my_struct");
|
2021-02-09 18:52:34 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 21:57:22 +00:00
|
|
|
TEST_F(StructTest, Layout) {
|
2022-05-01 14:40:55 +00:00
|
|
|
auto* inner_st = //
|
2022-08-02 17:03:35 +00:00
|
|
|
Structure("Inner", utils::Vector{
|
2022-05-01 14:40:55 +00:00
|
|
|
Member("a", ty.i32()),
|
|
|
|
Member("b", ty.u32()),
|
|
|
|
Member("c", ty.f32()),
|
|
|
|
Member("d", ty.vec3<f32>()),
|
|
|
|
Member("e", ty.mat4x2<f32>()),
|
|
|
|
});
|
|
|
|
|
2022-08-02 17:03:35 +00:00
|
|
|
auto* outer_st = Structure("Outer", utils::Vector{
|
2022-05-01 14:40:55 +00:00
|
|
|
Member("inner", ty.type_name("Inner")),
|
|
|
|
Member("a", ty.i32()),
|
|
|
|
});
|
|
|
|
|
|
|
|
auto p = Build();
|
|
|
|
ASSERT_TRUE(p.IsValid()) << p.Diagnostics().str();
|
|
|
|
|
|
|
|
auto* sem_inner_st = p.Sem().Get(inner_st);
|
|
|
|
auto* sem_outer_st = p.Sem().Get(outer_st);
|
|
|
|
|
|
|
|
EXPECT_EQ(sem_inner_st->Layout(p.Symbols()),
|
|
|
|
R"(/* align(16) size(64) */ struct Inner {
|
2022-01-14 21:57:22 +00:00
|
|
|
/* offset( 0) align( 4) size( 4) */ a : i32;
|
|
|
|
/* offset( 4) align( 4) size( 4) */ b : u32;
|
|
|
|
/* offset( 8) align( 4) size( 4) */ c : f32;
|
|
|
|
/* offset(12) align( 1) size( 4) */ // -- implicit field alignment padding --;
|
|
|
|
/* offset(16) align(16) size(12) */ d : vec3<f32>;
|
|
|
|
/* offset(28) align( 1) size( 4) */ // -- implicit field alignment padding --;
|
|
|
|
/* offset(32) align( 8) size(32) */ e : mat4x2<f32>;
|
|
|
|
/* */ };)");
|
|
|
|
|
2022-05-01 14:40:55 +00:00
|
|
|
EXPECT_EQ(sem_outer_st->Layout(p.Symbols()),
|
|
|
|
R"(/* align(16) size(80) */ struct Outer {
|
2022-01-14 21:57:22 +00:00
|
|
|
/* offset( 0) align(16) size(64) */ inner : Inner;
|
|
|
|
/* offset(64) align( 4) size( 4) */ a : i32;
|
|
|
|
/* offset(68) align( 1) size(12) */ // -- implicit struct size padding --;
|
|
|
|
/* */ };)");
|
|
|
|
}
|
|
|
|
|
2022-09-06 14:41:16 +00:00
|
|
|
TEST_F(StructTest, Location) {
|
|
|
|
auto* st = Structure("st", utils::Vector{
|
|
|
|
Member("a", ty.i32(), utils::Vector{Location(1u)}),
|
|
|
|
Member("b", ty.u32()),
|
|
|
|
});
|
|
|
|
|
|
|
|
auto p = Build();
|
|
|
|
ASSERT_TRUE(p.IsValid()) << p.Diagnostics().str();
|
|
|
|
|
|
|
|
auto* sem = p.Sem().Get(st);
|
|
|
|
ASSERT_EQ(2u, sem->Members().size());
|
|
|
|
|
|
|
|
EXPECT_TRUE(sem->Members()[0]->Location().has_value());
|
|
|
|
EXPECT_EQ(sem->Members()[0]->Location().value(), 1u);
|
|
|
|
|
|
|
|
EXPECT_FALSE(sem->Members()[1]->Location().has_value());
|
|
|
|
}
|
|
|
|
|
2020-03-26 15:31:43 +00:00
|
|
|
} // namespace
|
2022-04-07 16:04:35 +00:00
|
|
|
} // namespace tint::sem
|