mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-25 22:45:39 +00:00
This CL moves Bool, F16, F32, I32, U32, and Void over to the type folder and updates namespaces as needed. Bug: tint:1718 Change-Id: If3056521e5283ac2d9e1fd09c6daf0f647dd3846 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/113342 Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
92 lines
3.5 KiB
C++
92 lines
3.5 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 "src/tint/sem/test_helper.h"
|
|
#include "src/tint/type/texture.h"
|
|
|
|
namespace tint::sem {
|
|
namespace {
|
|
|
|
using PointerTest = TestHelper;
|
|
|
|
TEST_F(PointerTest, Creation) {
|
|
auto* a =
|
|
create<Pointer>(create<type::I32>(), ast::AddressSpace::kStorage, ast::Access::kReadWrite);
|
|
auto* b =
|
|
create<Pointer>(create<type::I32>(), ast::AddressSpace::kStorage, ast::Access::kReadWrite);
|
|
auto* c =
|
|
create<Pointer>(create<type::F32>(), ast::AddressSpace::kStorage, ast::Access::kReadWrite);
|
|
auto* d =
|
|
create<Pointer>(create<type::I32>(), ast::AddressSpace::kPrivate, ast::Access::kReadWrite);
|
|
auto* e = create<Pointer>(create<type::I32>(), ast::AddressSpace::kStorage, ast::Access::kRead);
|
|
|
|
EXPECT_TRUE(a->StoreType()->Is<type::I32>());
|
|
EXPECT_EQ(a->AddressSpace(), ast::AddressSpace::kStorage);
|
|
EXPECT_EQ(a->Access(), ast::Access::kReadWrite);
|
|
|
|
EXPECT_EQ(a, b);
|
|
EXPECT_NE(a, c);
|
|
EXPECT_NE(a, d);
|
|
EXPECT_NE(a, e);
|
|
}
|
|
|
|
TEST_F(PointerTest, Hash) {
|
|
auto* a =
|
|
create<Pointer>(create<type::I32>(), ast::AddressSpace::kStorage, ast::Access::kReadWrite);
|
|
auto* b =
|
|
create<Pointer>(create<type::I32>(), ast::AddressSpace::kStorage, ast::Access::kReadWrite);
|
|
auto* c =
|
|
create<Pointer>(create<type::F32>(), ast::AddressSpace::kStorage, ast::Access::kReadWrite);
|
|
auto* d =
|
|
create<Pointer>(create<type::I32>(), ast::AddressSpace::kPrivate, ast::Access::kReadWrite);
|
|
auto* e = create<Pointer>(create<type::I32>(), ast::AddressSpace::kStorage, ast::Access::kRead);
|
|
|
|
EXPECT_EQ(a->Hash(), b->Hash());
|
|
EXPECT_NE(a->Hash(), c->Hash());
|
|
EXPECT_NE(a->Hash(), d->Hash());
|
|
EXPECT_NE(a->Hash(), e->Hash());
|
|
}
|
|
|
|
TEST_F(PointerTest, Equals) {
|
|
auto* a =
|
|
create<Pointer>(create<type::I32>(), ast::AddressSpace::kStorage, ast::Access::kReadWrite);
|
|
auto* b =
|
|
create<Pointer>(create<type::I32>(), ast::AddressSpace::kStorage, ast::Access::kReadWrite);
|
|
auto* c =
|
|
create<Pointer>(create<type::F32>(), ast::AddressSpace::kStorage, ast::Access::kReadWrite);
|
|
auto* d =
|
|
create<Pointer>(create<type::I32>(), ast::AddressSpace::kPrivate, ast::Access::kReadWrite);
|
|
auto* e = create<Pointer>(create<type::I32>(), ast::AddressSpace::kStorage, ast::Access::kRead);
|
|
|
|
EXPECT_TRUE(a->Equals(*b));
|
|
EXPECT_FALSE(a->Equals(*c));
|
|
EXPECT_FALSE(a->Equals(*d));
|
|
EXPECT_FALSE(a->Equals(*e));
|
|
EXPECT_FALSE(a->Equals(type::Void{}));
|
|
}
|
|
|
|
TEST_F(PointerTest, FriendlyName) {
|
|
auto* r = create<Pointer>(create<type::I32>(), ast::AddressSpace::kNone, ast::Access::kRead);
|
|
EXPECT_EQ(r->FriendlyName(Symbols()), "ptr<i32, read>");
|
|
}
|
|
|
|
TEST_F(PointerTest, FriendlyNameWithAddressSpace) {
|
|
auto* r =
|
|
create<Pointer>(create<type::I32>(), ast::AddressSpace::kWorkgroup, ast::Access::kRead);
|
|
EXPECT_EQ(r->FriendlyName(Symbols()), "ptr<workgroup, i32, read>");
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace tint::sem
|