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 =
|
2021-04-20 15:04:21 +00:00
|
|
|
create<ast::Struct>(name, ast::StructMemberList{}, ast::DecorationList{});
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* ptr = impl;
|
2021-07-23 16:43:01 +00:00
|
|
|
auto* s =
|
|
|
|
create<sem::Struct>(impl, impl->name(), StructMemberList{}, 4 /* align */,
|
|
|
|
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 =
|
2021-04-20 15:04:21 +00:00
|
|
|
create<ast::Struct>(name, ast::StructMemberList{}, ast::DecorationList{});
|
2021-07-23 16:43:01 +00:00
|
|
|
auto* s =
|
|
|
|
create<sem::Struct>(impl, impl->name(), StructMemberList{}, 4 /* align */,
|
|
|
|
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 =
|
2021-04-20 15:04:21 +00:00
|
|
|
create<ast::Struct>(name, ast::StructMemberList{}, ast::DecorationList{});
|
2021-07-23 16:43:01 +00:00
|
|
|
auto* s =
|
|
|
|
create<sem::Struct>(impl, impl->name(), StructMemberList{}, 4 /* align */,
|
|
|
|
4 /* size */, 4 /* size_no_padding */);
|
2021-02-09 18:52:34 +00:00
|
|
|
EXPECT_EQ(s->FriendlyName(Symbols()), "my_struct");
|
|
|
|
}
|
|
|
|
|
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
|