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.
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
#include "src/sem/struct.h"
|
2021-04-19 22:54:43 +00:00
|
|
|
#include "src/sem/test_helper.h"
|
|
|
|
#include "src/sem/texture_type.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
namespace tint {
|
2021-04-19 22:51:23 +00:00
|
|
|
namespace 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) {
|
2021-04-20 15:04:21 +00:00
|
|
|
auto name = Sym("S");
|
2021-01-21 15:42:10 +00:00
|
|
|
auto* impl =
|
2022-02-02 23:07:11 +00:00
|
|
|
create<ast::Struct>(name, ast::StructMemberList{}, ast::AttributeList{});
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* ptr = impl;
|
2021-07-23 16:43:01 +00:00
|
|
|
auto* s =
|
2021-10-15 17:33:10 +00:00
|
|
|
create<sem::Struct>(impl, impl->name, StructMemberList{}, 4 /* align */,
|
2021-07-23 16:43:01 +00:00
|
|
|
8 /* size */, 16 /* size_no_padding */);
|
2021-05-07 14:49:34 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
TEST_F(StructTest, TypeName) {
|
2021-04-20 15:04:21 +00:00
|
|
|
auto name = Sym("my_struct");
|
2021-01-21 15:42:10 +00:00
|
|
|
auto* impl =
|
2022-02-02 23:07:11 +00:00
|
|
|
create<ast::Struct>(name, ast::StructMemberList{}, ast::AttributeList{});
|
2021-07-23 16:43:01 +00:00
|
|
|
auto* s =
|
2021-10-15 17:33:10 +00:00
|
|
|
create<sem::Struct>(impl, impl->name, StructMemberList{}, 4 /* align */,
|
2021-07-23 16:43:01 +00:00
|
|
|
4 /* size */, 4 /* size_no_padding */);
|
2021-04-13 20:07:57 +00:00
|
|
|
EXPECT_EQ(s->type_name(), "__struct_$1");
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
2021-05-07 14:49:34 +00:00
|
|
|
TEST_F(StructTest, FriendlyName) {
|
2021-04-20 15:04:21 +00:00
|
|
|
auto name = Sym("my_struct");
|
2021-02-09 18:52:34 +00:00
|
|
|
auto* impl =
|
2022-02-02 23:07:11 +00:00
|
|
|
create<ast::Struct>(name, ast::StructMemberList{}, ast::AttributeList{});
|
2021-07-23 16:43:01 +00:00
|
|
|
auto* s =
|
2021-10-15 17:33:10 +00:00
|
|
|
create<sem::Struct>(impl, impl->name, StructMemberList{}, 4 /* align */,
|
2021-07-23 16:43:01 +00:00
|
|
|
4 /* size */, 4 /* size_no_padding */);
|
2021-02-09 18:52:34 +00:00
|
|
|
EXPECT_EQ(s->FriendlyName(Symbols()), "my_struct");
|
|
|
|
}
|
|
|
|
|
2022-01-14 21:57:22 +00:00
|
|
|
TEST_F(StructTest, Layout) {
|
|
|
|
auto* inner_st = //
|
|
|
|
Structure("Inner", {
|
|
|
|
Member("a", ty.i32()),
|
|
|
|
Member("b", ty.u32()),
|
|
|
|
Member("c", ty.f32()),
|
|
|
|
Member("d", ty.vec3<f32>()),
|
|
|
|
Member("e", ty.mat4x2<f32>()),
|
|
|
|
});
|
|
|
|
|
|
|
|
auto* outer_st =
|
|
|
|
Structure("Outer", {
|
|
|
|
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 {
|
|
|
|
/* 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>;
|
|
|
|
/* */ };)");
|
|
|
|
|
|
|
|
EXPECT_EQ(sem_outer_st->Layout(p.Symbols()),
|
|
|
|
R"(/* align(16) size(80) */ struct Outer {
|
|
|
|
/* 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 --;
|
|
|
|
/* */ };)");
|
|
|
|
}
|
|
|
|
|
2020-03-26 15:31:43 +00:00
|
|
|
} // namespace
|
2021-04-19 22:51:23 +00:00
|
|
|
} // namespace sem
|
2020-03-02 20:47:43 +00:00
|
|
|
} // namespace tint
|