mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-09-01 08:18:56 +00:00
Parsers need fixing up. Bug: tint:396 Bug: tint:390 Change-Id: I7f823e2489101b43c1b21a6b89c248695a3f35b7 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/35160 Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: dan sinclair <dsinclair@chromium.org>
719 lines
24 KiB
C++
719 lines
24 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 <memory>
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "src/ast/binding_decoration.h"
|
|
#include "src/ast/bool_literal.h"
|
|
#include "src/ast/builtin.h"
|
|
#include "src/ast/builtin_decoration.h"
|
|
#include "src/ast/constant_id_decoration.h"
|
|
#include "src/ast/float_literal.h"
|
|
#include "src/ast/location_decoration.h"
|
|
#include "src/ast/module.h"
|
|
#include "src/ast/scalar_constructor_expression.h"
|
|
#include "src/ast/set_decoration.h"
|
|
#include "src/ast/storage_class.h"
|
|
#include "src/ast/struct.h"
|
|
#include "src/ast/type/access_control_type.h"
|
|
#include "src/ast/type/bool_type.h"
|
|
#include "src/ast/type/f32_type.h"
|
|
#include "src/ast/type/i32_type.h"
|
|
#include "src/ast/type/struct_type.h"
|
|
#include "src/ast/type/u32_type.h"
|
|
#include "src/ast/type/vector_type.h"
|
|
#include "src/ast/type_constructor_expression.h"
|
|
#include "src/ast/variable.h"
|
|
#include "src/ast/variable_decoration.h"
|
|
#include "src/type_determiner.h"
|
|
#include "src/writer/spirv/builder.h"
|
|
#include "src/writer/spirv/spv_dump.h"
|
|
#include "src/writer/spirv/test_helper.h"
|
|
|
|
namespace tint {
|
|
namespace writer {
|
|
namespace spirv {
|
|
namespace {
|
|
|
|
using BuilderTest = TestHelper;
|
|
|
|
TEST_F(BuilderTest, GlobalVar_NoStorageClass) {
|
|
ast::type::F32 f32;
|
|
ast::Variable v(Source{}, "var", ast::StorageClass::kNone, &f32, false,
|
|
nullptr, ast::VariableDecorationList{});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %1 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeFloat 32
|
|
%2 = OpTypePointer Private %3
|
|
%4 = OpConstantNull %3
|
|
%1 = OpVariable %2 Private %4
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_WithStorageClass) {
|
|
ast::type::F32 f32;
|
|
ast::Variable v(Source{}, "var", ast::StorageClass::kOutput, &f32, false,
|
|
nullptr, ast::VariableDecorationList{});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %1 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeFloat 32
|
|
%2 = OpTypePointer Output %3
|
|
%4 = OpConstantNull %3
|
|
%1 = OpVariable %2 Output %4
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_WithStorageClass_Input) {
|
|
ast::type::F32 f32;
|
|
ast::Variable v(Source{}, "var", ast::StorageClass::kInput, &f32, false,
|
|
nullptr, ast::VariableDecorationList{});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %1 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeFloat 32
|
|
%2 = OpTypePointer Input %3
|
|
%1 = OpVariable %2 Input
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_WithConstructor) {
|
|
ast::type::F32 f32;
|
|
ast::type::Vector vec(&f32, 3);
|
|
|
|
ast::ExpressionList vals;
|
|
vals.push_back(create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 1.0f)));
|
|
vals.push_back(create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 1.0f)));
|
|
vals.push_back(create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 3.0f)));
|
|
|
|
auto* init = create<ast::TypeConstructorExpression>(Source{}, &vec, vals);
|
|
|
|
EXPECT_TRUE(td.DetermineResultType(init)) << td.error();
|
|
|
|
ast::Variable v(Source{}, "var", ast::StorageClass::kOutput, &f32, false,
|
|
init, ast::VariableDecorationList{});
|
|
|
|
td.RegisterVariableForTesting(&v);
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&v)) << b.error();
|
|
ASSERT_FALSE(b.has_error()) << b.error();
|
|
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %6 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%2 = OpTypeFloat 32
|
|
%1 = OpTypeVector %2 3
|
|
%3 = OpConstant %2 1
|
|
%4 = OpConstant %2 3
|
|
%5 = OpConstantComposite %1 %3 %3 %4
|
|
%7 = OpTypePointer Output %2
|
|
%6 = OpVariable %7 Output %5
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_Const) {
|
|
ast::type::F32 f32;
|
|
ast::type::Vector vec(&f32, 3);
|
|
|
|
ast::ExpressionList vals;
|
|
vals.push_back(create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 1.0f)));
|
|
vals.push_back(create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 1.0f)));
|
|
vals.push_back(create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 3.0f)));
|
|
|
|
auto* init = create<ast::TypeConstructorExpression>(Source{}, &vec, vals);
|
|
|
|
EXPECT_TRUE(td.DetermineResultType(init)) << td.error();
|
|
|
|
ast::Variable v(Source{}, "var", ast::StorageClass::kOutput, &f32, true, init,
|
|
ast::VariableDecorationList{});
|
|
td.RegisterVariableForTesting(&v);
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&v)) << b.error();
|
|
ASSERT_FALSE(b.has_error()) << b.error();
|
|
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %5 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%2 = OpTypeFloat 32
|
|
%1 = OpTypeVector %2 3
|
|
%3 = OpConstant %2 1
|
|
%4 = OpConstant %2 3
|
|
%5 = OpConstantComposite %1 %3 %3 %4
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_Complex_Constructor) {
|
|
ast::type::F32 f32;
|
|
ast::type::Vector vec3(&f32, 3);
|
|
|
|
ast::ExpressionList vals;
|
|
vals.push_back(create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 1.0f)));
|
|
vals.push_back(create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 2.0f)));
|
|
vals.push_back(create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 3.0f)));
|
|
auto* init = create<ast::TypeConstructorExpression>(Source{}, &vec3, vals);
|
|
|
|
EXPECT_TRUE(td.DetermineResultType(init)) << td.error();
|
|
|
|
ast::Variable v(Source{}, "var", ast::StorageClass::kOutput, &f32, true, init,
|
|
ast::VariableDecorationList{});
|
|
td.RegisterVariableForTesting(&v);
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&v)) << b.error();
|
|
ASSERT_FALSE(b.has_error()) << b.error();
|
|
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%2 = OpTypeFloat 32
|
|
%1 = OpTypeVector %2 3
|
|
%3 = OpConstant %2 1
|
|
%4 = OpConstant %2 2
|
|
%5 = OpConstant %2 3
|
|
%6 = OpConstantComposite %1 %3 %4 %5
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_Complex_ConstructorWithExtract) {
|
|
ast::type::F32 f32;
|
|
ast::type::Vector vec3(&f32, 3);
|
|
ast::type::Vector vec2(&f32, 2);
|
|
|
|
auto* first = create<ast::TypeConstructorExpression>(
|
|
Source{}, &vec2,
|
|
ast::ExpressionList{
|
|
create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 1.0f)),
|
|
create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 2.0f)),
|
|
});
|
|
|
|
auto* init = create<ast::TypeConstructorExpression>(
|
|
Source{}, &vec3,
|
|
ast::ExpressionList{
|
|
first,
|
|
create<ast::ScalarConstructorExpression>(
|
|
Source{}, create<ast::FloatLiteral>(Source{}, &f32, 3.0f)),
|
|
});
|
|
|
|
EXPECT_TRUE(td.DetermineResultType(init)) << td.error();
|
|
|
|
ast::Variable v(Source{}, "var", ast::StorageClass::kOutput, &f32, true, init,
|
|
ast::VariableDecorationList{});
|
|
td.RegisterVariableForTesting(&v);
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&v)) << b.error();
|
|
ASSERT_FALSE(b.has_error()) << b.error();
|
|
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%2 = OpTypeFloat 32
|
|
%1 = OpTypeVector %2 3
|
|
%3 = OpTypeVector %2 2
|
|
%4 = OpConstant %2 1
|
|
%5 = OpConstant %2 2
|
|
%6 = OpConstantComposite %3 %4 %5
|
|
%8 = OpTypeInt 32 0
|
|
%9 = OpConstant %8 0
|
|
%7 = OpSpecConstantOp %2 CompositeExtract %6 9
|
|
%11 = OpConstant %8 1
|
|
%10 = OpSpecConstantOp %2 CompositeExtract %6 11
|
|
%12 = OpConstant %2 3
|
|
%13 = OpSpecConstantComposite %1 %7 %10 %12
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_WithLocation) {
|
|
ast::type::F32 f32;
|
|
auto* v =
|
|
create<ast::Variable>(Source{}, // source
|
|
"var", // name
|
|
ast::StorageClass::kOutput, // storage_class
|
|
&f32, // type
|
|
false, // is_const
|
|
nullptr, // constructor
|
|
ast::VariableDecorationList{
|
|
// decorations
|
|
create<ast::LocationDecoration>(5, Source{}),
|
|
});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %1 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %1 Location 5
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeFloat 32
|
|
%2 = OpTypePointer Output %3
|
|
%4 = OpConstantNull %3
|
|
%1 = OpVariable %2 Output %4
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_WithBindingAndSet) {
|
|
ast::type::F32 f32;
|
|
auto* v =
|
|
create<ast::Variable>(Source{}, // source
|
|
"var", // name
|
|
ast::StorageClass::kOutput, // storage_class
|
|
&f32, // type
|
|
false, // is_const
|
|
nullptr, // constructor
|
|
ast::VariableDecorationList{
|
|
// decorations
|
|
create<ast::BindingDecoration>(2, Source{}),
|
|
create<ast::SetDecoration>(3, Source{}),
|
|
});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %1 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %1 Binding 2
|
|
OpDecorate %1 DescriptorSet 3
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeFloat 32
|
|
%2 = OpTypePointer Output %3
|
|
%4 = OpConstantNull %3
|
|
%1 = OpVariable %2 Output %4
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_WithBuiltin) {
|
|
ast::type::F32 f32;
|
|
auto* v = create<ast::Variable>(
|
|
Source{}, // source
|
|
"var", // name
|
|
ast::StorageClass::kOutput, // storage_class
|
|
&f32, // type
|
|
false, // is_const
|
|
nullptr, // constructor
|
|
ast::VariableDecorationList{
|
|
// decorations
|
|
create<ast::BuiltinDecoration>(ast::Builtin::kPosition, Source{}),
|
|
});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %1 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %1 BuiltIn Position
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeFloat 32
|
|
%2 = OpTypePointer Output %3
|
|
%4 = OpConstantNull %3
|
|
%1 = OpVariable %2 Output %4
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_ConstantId_Bool) {
|
|
ast::type::Bool bool_type;
|
|
|
|
auto* v = create<ast::Variable>(
|
|
Source{}, // source
|
|
"var", // name
|
|
ast::StorageClass::kNone, // storage_class
|
|
&bool_type, // type
|
|
false, // is_const
|
|
create<ast::ScalarConstructorExpression>(
|
|
Source{},
|
|
create<ast::BoolLiteral>(Source{}, &bool_type, true)), // constructor
|
|
ast::VariableDecorationList{
|
|
// decorations
|
|
create<ast::ConstantIdDecoration>(1200, Source{}),
|
|
});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %3 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %2 SpecId 1200
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%1 = OpTypeBool
|
|
%2 = OpSpecConstantTrue %1
|
|
%4 = OpTypePointer Private %1
|
|
%3 = OpVariable %4 Private %2
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_ConstantId_Bool_NoConstructor) {
|
|
ast::type::Bool bool_type;
|
|
|
|
auto* v = create<ast::Variable>(
|
|
Source{}, // source
|
|
"var", // name
|
|
ast::StorageClass::kNone, // storage_class
|
|
&bool_type, // type
|
|
false, // is_const
|
|
nullptr, // constructor
|
|
ast::VariableDecorationList{
|
|
// decorations
|
|
create<ast::ConstantIdDecoration>(1200, Source{}),
|
|
});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %1 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %4 SpecId 1200
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeBool
|
|
%2 = OpTypePointer Private %3
|
|
%4 = OpSpecConstantFalse %3
|
|
%1 = OpVariable %2 Private %4
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_ConstantId_Scalar) {
|
|
ast::type::F32 f32;
|
|
|
|
auto* v = create<ast::Variable>(
|
|
Source{}, // source
|
|
"var", // name
|
|
ast::StorageClass::kNone, // storage_class
|
|
&f32, // type
|
|
false, // is_const
|
|
create<ast::ScalarConstructorExpression>(
|
|
Source{},
|
|
create<ast::FloatLiteral>(Source{}, &f32, 2.0)), // constructor
|
|
ast::VariableDecorationList{
|
|
// decorations
|
|
create<ast::ConstantIdDecoration>(0, Source{}),
|
|
});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %3 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %2 SpecId 0
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%1 = OpTypeFloat 32
|
|
%2 = OpSpecConstant %1 2
|
|
%4 = OpTypePointer Private %1
|
|
%3 = OpVariable %4 Private %2
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_ConstantId_Scalar_F32_NoConstructor) {
|
|
ast::type::F32 f32;
|
|
|
|
auto* v =
|
|
create<ast::Variable>(Source{}, // source
|
|
"var", // name
|
|
ast::StorageClass::kNone, // storage_class
|
|
&f32, // type
|
|
false, // is_const
|
|
nullptr, // constructor
|
|
ast::VariableDecorationList{
|
|
// decorations
|
|
create<ast::ConstantIdDecoration>(0, Source{}),
|
|
});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %1 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %4 SpecId 0
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeFloat 32
|
|
%2 = OpTypePointer Private %3
|
|
%4 = OpSpecConstant %3 0
|
|
%1 = OpVariable %2 Private %4
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_ConstantId_Scalar_I32_NoConstructor) {
|
|
ast::type::I32 i32;
|
|
|
|
auto* v =
|
|
create<ast::Variable>(Source{}, // source
|
|
"var", // name
|
|
ast::StorageClass::kNone, // storage_class
|
|
&i32, // type
|
|
false, // is_const
|
|
nullptr, // constructor
|
|
ast::VariableDecorationList{
|
|
// decorations
|
|
create<ast::ConstantIdDecoration>(0, Source{}),
|
|
});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %1 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %4 SpecId 0
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeInt 32 1
|
|
%2 = OpTypePointer Private %3
|
|
%4 = OpSpecConstant %3 0
|
|
%1 = OpVariable %2 Private %4
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_ConstantId_Scalar_U32_NoConstructor) {
|
|
ast::type::U32 u32;
|
|
|
|
auto* v =
|
|
create<ast::Variable>(Source{}, // source
|
|
"var", // name
|
|
ast::StorageClass::kNone, // storage_class
|
|
&u32, // type
|
|
false, // is_const
|
|
nullptr, // constructor
|
|
ast::VariableDecorationList{
|
|
// decorations
|
|
create<ast::ConstantIdDecoration>(0, Source{}),
|
|
});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(v)) << b.error();
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %1 "var"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %4 SpecId 0
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%3 = OpTypeInt 32 0
|
|
%2 = OpTypePointer Private %3
|
|
%4 = OpSpecConstant %3 0
|
|
%1 = OpVariable %2 Private %4
|
|
)");
|
|
}
|
|
|
|
struct BuiltinData {
|
|
ast::Builtin builtin;
|
|
SpvBuiltIn result;
|
|
};
|
|
inline std::ostream& operator<<(std::ostream& out, BuiltinData data) {
|
|
out << data.builtin;
|
|
return out;
|
|
}
|
|
using BuiltinDataTest = TestParamHelper<BuiltinData>;
|
|
TEST_P(BuiltinDataTest, Convert) {
|
|
auto params = GetParam();
|
|
EXPECT_EQ(b.ConvertBuiltin(params.builtin), params.result);
|
|
}
|
|
INSTANTIATE_TEST_SUITE_P(
|
|
BuilderTest_Type,
|
|
BuiltinDataTest,
|
|
testing::Values(
|
|
BuiltinData{ast::Builtin::kNone, SpvBuiltInMax},
|
|
BuiltinData{ast::Builtin::kPosition, SpvBuiltInPosition},
|
|
BuiltinData{
|
|
ast::Builtin::kVertexIdx,
|
|
SpvBuiltInVertexIndex,
|
|
},
|
|
BuiltinData{ast::Builtin::kInstanceIdx, SpvBuiltInInstanceIndex},
|
|
BuiltinData{ast::Builtin::kFrontFacing, SpvBuiltInFrontFacing},
|
|
BuiltinData{ast::Builtin::kFragCoord, SpvBuiltInFragCoord},
|
|
BuiltinData{ast::Builtin::kFragDepth, SpvBuiltInFragDepth},
|
|
BuiltinData{ast::Builtin::kLocalInvocationId,
|
|
SpvBuiltInLocalInvocationId},
|
|
BuiltinData{ast::Builtin::kLocalInvocationIdx,
|
|
SpvBuiltInLocalInvocationIndex},
|
|
BuiltinData{ast::Builtin::kGlobalInvocationId,
|
|
SpvBuiltInGlobalInvocationId}));
|
|
|
|
TEST_F(BuilderTest, GlobalVar_DeclReadOnly) {
|
|
// struct A {
|
|
// a : i32;
|
|
// };
|
|
// var b : [[access(read)]] A
|
|
|
|
ast::type::I32 i32;
|
|
|
|
ast::StructMemberDecorationList decos;
|
|
ast::StructMemberList members;
|
|
members.push_back(create<ast::StructMember>("a", &i32, decos));
|
|
members.push_back(create<ast::StructMember>("b", &i32, decos));
|
|
|
|
ast::type::Struct A("A", create<ast::Struct>(members));
|
|
ast::type::AccessControl ac{ast::AccessControl::kReadOnly, &A};
|
|
|
|
ast::Variable var(Source{}, "b", ast::StorageClass::kStorageBuffer, &ac,
|
|
false, nullptr, ast::VariableDecorationList{});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&var)) << b.error();
|
|
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpMemberDecorate %3 0 NonWritable
|
|
OpMemberDecorate %3 1 NonWritable
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %3 "A"
|
|
OpMemberName %3 0 "a"
|
|
OpMemberName %3 1 "b"
|
|
OpName %1 "b"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%4 = OpTypeInt 32 1
|
|
%3 = OpTypeStruct %4 %4
|
|
%2 = OpTypePointer StorageBuffer %3
|
|
%1 = OpVariable %2 StorageBuffer
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_TypeAliasDeclReadOnly) {
|
|
// struct A {
|
|
// a : i32;
|
|
// };
|
|
// type B = A;
|
|
// var b : [[access(read)]] B
|
|
|
|
ast::type::I32 i32;
|
|
|
|
ast::StructMemberDecorationList decos;
|
|
ast::StructMemberList members;
|
|
members.push_back(create<ast::StructMember>("a", &i32, decos));
|
|
|
|
ast::type::Struct A("A", create<ast::Struct>(members));
|
|
ast::type::Alias B(mod->RegisterSymbol("B"), "B", &A);
|
|
ast::type::AccessControl ac{ast::AccessControl::kReadOnly, &B};
|
|
|
|
ast::Variable var(Source{}, "b", ast::StorageClass::kStorageBuffer, &ac,
|
|
false, nullptr, ast::VariableDecorationList{});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&var)) << b.error();
|
|
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpMemberDecorate %3 0 NonWritable
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %3 "A"
|
|
OpMemberName %3 0 "a"
|
|
OpName %1 "b"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%4 = OpTypeInt 32 1
|
|
%3 = OpTypeStruct %4
|
|
%2 = OpTypePointer StorageBuffer %3
|
|
%1 = OpVariable %2 StorageBuffer
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_TypeAliasAssignReadOnly) {
|
|
// struct A {
|
|
// a : i32;
|
|
// };
|
|
// type B = [[access(read)]] A;
|
|
// var b : B
|
|
|
|
ast::type::I32 i32;
|
|
|
|
ast::StructMemberDecorationList decos;
|
|
ast::StructMemberList members;
|
|
members.push_back(create<ast::StructMember>("a", &i32, decos));
|
|
|
|
ast::type::Struct A("A", create<ast::Struct>(members));
|
|
ast::type::AccessControl ac{ast::AccessControl::kReadOnly, &A};
|
|
ast::type::Alias B(mod->RegisterSymbol("B"), "B", &ac);
|
|
|
|
ast::Variable var(Source{}, "b", ast::StorageClass::kStorageBuffer, &B, false,
|
|
nullptr, ast::VariableDecorationList{});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&var)) << b.error();
|
|
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpMemberDecorate %3 0 NonWritable
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %3 "A"
|
|
OpMemberName %3 0 "a"
|
|
OpName %1 "b"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%4 = OpTypeInt 32 1
|
|
%3 = OpTypeStruct %4
|
|
%2 = OpTypePointer StorageBuffer %3
|
|
%1 = OpVariable %2 StorageBuffer
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_TwoVarDeclReadOnly) {
|
|
// struct A {
|
|
// a : i32;
|
|
// };
|
|
// var b : [[access(read)]] A
|
|
// var c : [[access(read_write)]] A
|
|
|
|
ast::type::I32 i32;
|
|
|
|
ast::StructMemberDecorationList decos;
|
|
ast::StructMemberList members;
|
|
members.push_back(create<ast::StructMember>("a", &i32, decos));
|
|
|
|
ast::type::Struct A("A", create<ast::Struct>(members));
|
|
ast::type::AccessControl read{ast::AccessControl::kReadOnly, &A};
|
|
ast::type::AccessControl rw{ast::AccessControl::kReadWrite, &A};
|
|
|
|
ast::Variable var_b(Source{}, "b", ast::StorageClass::kStorageBuffer, &read,
|
|
false, nullptr, ast::VariableDecorationList{});
|
|
ast::Variable var_c(Source{}, "c", ast::StorageClass::kStorageBuffer, &rw,
|
|
false, nullptr, ast::VariableDecorationList{});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&var_b)) << b.error();
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&var_c)) << b.error();
|
|
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpMemberDecorate %3 0 NonWritable
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.debug()), R"(OpName %3 "A"
|
|
OpMemberName %3 0 "a"
|
|
OpName %1 "b"
|
|
OpName %7 "A"
|
|
OpMemberName %7 0 "a"
|
|
OpName %5 "c"
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%4 = OpTypeInt 32 1
|
|
%3 = OpTypeStruct %4
|
|
%2 = OpTypePointer StorageBuffer %3
|
|
%1 = OpVariable %2 StorageBuffer
|
|
%7 = OpTypeStruct %4
|
|
%6 = OpTypePointer StorageBuffer %7
|
|
%5 = OpVariable %6 StorageBuffer
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_TextureStorageReadOnly) {
|
|
// var<uniform_constant> a : texture_storage_ro_2d<r32uint>;
|
|
ast::type::StorageTexture type(ast::type::TextureDimension::k2d,
|
|
ast::AccessControl::kReadOnly,
|
|
ast::type::ImageFormat::kR32Uint);
|
|
ASSERT_TRUE(td.DetermineStorageTextureSubtype(&type)) << td.error();
|
|
|
|
ast::Variable var_a(Source{}, "a", ast::StorageClass::kUniformConstant, &type,
|
|
false, nullptr, ast::VariableDecorationList{});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&var_a)) << b.error();
|
|
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %1 NonWritable
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%4 = OpTypeInt 32 0
|
|
%3 = OpTypeImage %4 2D 0 0 0 2 R32ui
|
|
%2 = OpTypePointer UniformConstant %3
|
|
%1 = OpVariable %2 UniformConstant
|
|
)");
|
|
}
|
|
|
|
TEST_F(BuilderTest, GlobalVar_TextureStorageWriteOnly) {
|
|
// var<uniform_constant> a : texture_storage_wo_2d<r32uint>;
|
|
ast::type::StorageTexture type(ast::type::TextureDimension::k2d,
|
|
ast::AccessControl::kWriteOnly,
|
|
ast::type::ImageFormat::kR32Uint);
|
|
ASSERT_TRUE(td.DetermineStorageTextureSubtype(&type)) << td.error();
|
|
|
|
ast::Variable var_a(Source{}, "a", ast::StorageClass::kUniformConstant, &type,
|
|
false, nullptr, ast::VariableDecorationList{});
|
|
|
|
EXPECT_TRUE(b.GenerateGlobalVariable(&var_a)) << b.error();
|
|
|
|
EXPECT_EQ(DumpInstructions(b.annots()), R"(OpDecorate %1 NonReadable
|
|
)");
|
|
EXPECT_EQ(DumpInstructions(b.types()), R"(%4 = OpTypeVoid
|
|
%3 = OpTypeImage %4 2D 0 0 0 2 R32ui
|
|
%2 = OpTypePointer UniformConstant %3
|
|
%1 = OpVariable %2 UniformConstant
|
|
)");
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace spirv
|
|
} // namespace writer
|
|
} // namespace tint
|