mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-31 11:41:35 +00:00
ArrayLengthFromUniform is needed for correct bounds checks on dynamic storage buffers on D3D12. The intrinsic GetDimensions does not return the actual size of the buffer binding. ArrayLengthFromUniform is updated to output the indices of the uniform buffer that are statically used. This allows Dawn to minimize the amount of data needed to upload into the uniform buffer. These output indices are returned on the HLSL/MSL generator result. ArrayLengthFromUniform is also updated to allow only some of the arrayLength calls to be replaced with uniform buffer loads. For HLSL output, the remaining arrayLength computations will continue to use GetDimensions(). For MSL, it is invalid to not specify an index into the uniform buffer for all storage buffers. After Dawn is updated to use the array_length_from_uniform option in the Metal backend, the buffer_size_ubo_index member for MSL output may be removed. Bug: dawn:429 Change-Id: I9da4ec4a20882e9f1bfa5bb026725d72529eff26 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/69301 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: James Price <jrprice@google.com> Commit-Queue: Austin Eng <enga@chromium.org>
347 lines
9.9 KiB
C++
347 lines
9.9 KiB
C++
// Copyright 2021 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/ast/call_statement.h"
|
|
#include "src/ast/stage_decoration.h"
|
|
#include "src/ast/struct_block_decoration.h"
|
|
#include "src/ast/variable_decl_statement.h"
|
|
#include "src/writer/hlsl/test_helper.h"
|
|
|
|
namespace tint {
|
|
namespace writer {
|
|
namespace hlsl {
|
|
namespace {
|
|
|
|
using HlslSanitizerTest = TestHelper;
|
|
|
|
TEST_F(HlslSanitizerTest, Call_ArrayLength) {
|
|
auto* s = Structure("my_struct", {Member(0, "a", ty.array<f32>(4))},
|
|
{create<ast::StructBlockDecoration>()});
|
|
Global("b", ty.Of(s), ast::StorageClass::kStorage, ast::Access::kRead,
|
|
ast::DecorationList{
|
|
create<ast::BindingDecoration>(1),
|
|
create<ast::GroupDecoration>(2),
|
|
});
|
|
|
|
Func("a_func", ast::VariableList{}, ty.void_(),
|
|
ast::StatementList{
|
|
Decl(Var("len", ty.u32(), ast::StorageClass::kNone,
|
|
Call("arrayLength", AddressOf(MemberAccessor("b", "a"))))),
|
|
},
|
|
ast::DecorationList{
|
|
Stage(ast::PipelineStage::kFragment),
|
|
});
|
|
|
|
GeneratorImpl& gen = SanitizeAndBuild();
|
|
|
|
ASSERT_TRUE(gen.Generate()) << gen.error();
|
|
|
|
auto got = gen.result();
|
|
auto* expect = R"(ByteAddressBuffer b : register(t1, space2);
|
|
|
|
void a_func() {
|
|
uint tint_symbol_1 = 0u;
|
|
b.GetDimensions(tint_symbol_1);
|
|
const uint tint_symbol_2 = ((tint_symbol_1 - 0u) / 4u);
|
|
uint len = tint_symbol_2;
|
|
return;
|
|
}
|
|
)";
|
|
EXPECT_EQ(expect, got);
|
|
}
|
|
|
|
TEST_F(HlslSanitizerTest, Call_ArrayLength_OtherMembersInStruct) {
|
|
auto* s = Structure("my_struct",
|
|
{
|
|
Member(0, "z", ty.f32()),
|
|
Member(4, "a", ty.array<f32>(4)),
|
|
},
|
|
{create<ast::StructBlockDecoration>()});
|
|
Global("b", ty.Of(s), ast::StorageClass::kStorage, ast::Access::kRead,
|
|
ast::DecorationList{
|
|
create<ast::BindingDecoration>(1),
|
|
create<ast::GroupDecoration>(2),
|
|
});
|
|
|
|
Func("a_func", ast::VariableList{}, ty.void_(),
|
|
ast::StatementList{
|
|
Decl(Var("len", ty.u32(), ast::StorageClass::kNone,
|
|
Call("arrayLength", AddressOf(MemberAccessor("b", "a"))))),
|
|
},
|
|
ast::DecorationList{
|
|
Stage(ast::PipelineStage::kFragment),
|
|
});
|
|
|
|
GeneratorImpl& gen = SanitizeAndBuild();
|
|
|
|
ASSERT_TRUE(gen.Generate()) << gen.error();
|
|
|
|
auto got = gen.result();
|
|
auto* expect = R"(ByteAddressBuffer b : register(t1, space2);
|
|
|
|
void a_func() {
|
|
uint tint_symbol_1 = 0u;
|
|
b.GetDimensions(tint_symbol_1);
|
|
const uint tint_symbol_2 = ((tint_symbol_1 - 4u) / 4u);
|
|
uint len = tint_symbol_2;
|
|
return;
|
|
}
|
|
)";
|
|
|
|
EXPECT_EQ(expect, got);
|
|
}
|
|
|
|
TEST_F(HlslSanitizerTest, Call_ArrayLength_ViaLets) {
|
|
auto* s = Structure("my_struct", {Member(0, "a", ty.array<f32>(4))},
|
|
{create<ast::StructBlockDecoration>()});
|
|
Global("b", ty.Of(s), ast::StorageClass::kStorage, ast::Access::kRead,
|
|
ast::DecorationList{
|
|
create<ast::BindingDecoration>(1),
|
|
create<ast::GroupDecoration>(2),
|
|
});
|
|
|
|
auto* p = Const("p", nullptr, AddressOf("b"));
|
|
auto* p2 = Const("p2", nullptr, AddressOf(MemberAccessor(Deref(p), "a")));
|
|
|
|
Func("a_func", ast::VariableList{}, ty.void_(),
|
|
ast::StatementList{
|
|
Decl(p),
|
|
Decl(p2),
|
|
Decl(Var("len", ty.u32(), ast::StorageClass::kNone,
|
|
Call("arrayLength", p2))),
|
|
},
|
|
ast::DecorationList{
|
|
Stage(ast::PipelineStage::kFragment),
|
|
});
|
|
|
|
GeneratorImpl& gen = SanitizeAndBuild();
|
|
|
|
ASSERT_TRUE(gen.Generate()) << gen.error();
|
|
|
|
auto got = gen.result();
|
|
auto* expect = R"(ByteAddressBuffer b : register(t1, space2);
|
|
|
|
void a_func() {
|
|
uint tint_symbol_1 = 0u;
|
|
b.GetDimensions(tint_symbol_1);
|
|
const uint tint_symbol_2 = ((tint_symbol_1 - 0u) / 4u);
|
|
uint len = tint_symbol_2;
|
|
return;
|
|
}
|
|
)";
|
|
|
|
EXPECT_EQ(expect, got);
|
|
}
|
|
|
|
TEST_F(HlslSanitizerTest, Call_ArrayLength_ArrayLengthFromUniform) {
|
|
auto* s = Structure("my_struct", {Member(0, "a", ty.array<f32>(4))},
|
|
{create<ast::StructBlockDecoration>()});
|
|
Global("b", ty.Of(s), ast::StorageClass::kStorage, ast::Access::kRead,
|
|
ast::DecorationList{
|
|
create<ast::BindingDecoration>(1),
|
|
create<ast::GroupDecoration>(2),
|
|
});
|
|
Global("c", ty.Of(s), ast::StorageClass::kStorage, ast::Access::kRead,
|
|
ast::DecorationList{
|
|
create<ast::BindingDecoration>(2),
|
|
create<ast::GroupDecoration>(2),
|
|
});
|
|
|
|
Func("a_func", ast::VariableList{}, ty.void_(),
|
|
ast::StatementList{
|
|
Decl(Var(
|
|
"len", ty.u32(), ast::StorageClass::kNone,
|
|
Add(Call("arrayLength", AddressOf(MemberAccessor("b", "a"))),
|
|
Call("arrayLength", AddressOf(MemberAccessor("c", "a")))))),
|
|
},
|
|
ast::DecorationList{
|
|
Stage(ast::PipelineStage::kFragment),
|
|
});
|
|
|
|
Options options;
|
|
options.array_length_from_uniform.ubo_binding = {3, 4};
|
|
options.array_length_from_uniform.bindpoint_to_size_index.emplace(
|
|
sem::BindingPoint{2, 2}, 7u);
|
|
GeneratorImpl& gen = SanitizeAndBuild(options);
|
|
|
|
ASSERT_TRUE(gen.Generate()) << gen.error();
|
|
|
|
auto got = gen.result();
|
|
auto* expect = R"(cbuffer cbuffer_tint_symbol_1 : register(b4, space3) {
|
|
uint4 tint_symbol_1[2];
|
|
};
|
|
|
|
ByteAddressBuffer b : register(t1, space2);
|
|
ByteAddressBuffer c : register(t2, space2);
|
|
|
|
void a_func() {
|
|
uint tint_symbol_4 = 0u;
|
|
b.GetDimensions(tint_symbol_4);
|
|
const uint tint_symbol_5 = ((tint_symbol_4 - 0u) / 4u);
|
|
uint len = (tint_symbol_5 + ((tint_symbol_1[1].w - 0u) / 4u));
|
|
return;
|
|
}
|
|
)";
|
|
EXPECT_EQ(expect, got);
|
|
}
|
|
|
|
TEST_F(HlslSanitizerTest, PromoteArrayInitializerToConstVar) {
|
|
auto* array_init = array<i32, 4>(1, 2, 3, 4);
|
|
auto* array_index = IndexAccessor(array_init, 3);
|
|
auto* pos = Var("pos", ty.i32(), ast::StorageClass::kNone, array_index);
|
|
|
|
Func("main", ast::VariableList{}, ty.void_(),
|
|
{
|
|
Decl(pos),
|
|
},
|
|
{
|
|
Stage(ast::PipelineStage::kFragment),
|
|
});
|
|
|
|
GeneratorImpl& gen = SanitizeAndBuild();
|
|
|
|
ASSERT_TRUE(gen.Generate()) << gen.error();
|
|
|
|
auto got = gen.result();
|
|
auto* expect = R"(void main() {
|
|
const int tint_symbol[4] = {1, 2, 3, 4};
|
|
int pos = tint_symbol[3];
|
|
return;
|
|
}
|
|
)";
|
|
EXPECT_EQ(expect, got);
|
|
}
|
|
|
|
TEST_F(HlslSanitizerTest, PromoteStructInitializerToConstVar) {
|
|
auto* str = Structure("S", {
|
|
Member("a", ty.i32()),
|
|
Member("b", ty.vec3<f32>()),
|
|
Member("c", ty.i32()),
|
|
});
|
|
auto* struct_init = Construct(ty.Of(str), 1, vec3<f32>(2.f, 3.f, 4.f), 4);
|
|
auto* struct_access = MemberAccessor(struct_init, "b");
|
|
auto* pos =
|
|
Var("pos", ty.vec3<f32>(), ast::StorageClass::kNone, struct_access);
|
|
|
|
Func("main", ast::VariableList{}, ty.void_(),
|
|
{
|
|
Decl(pos),
|
|
},
|
|
{
|
|
Stage(ast::PipelineStage::kFragment),
|
|
});
|
|
|
|
GeneratorImpl& gen = SanitizeAndBuild();
|
|
|
|
ASSERT_TRUE(gen.Generate()) << gen.error();
|
|
|
|
auto got = gen.result();
|
|
auto* expect = R"(struct S {
|
|
int a;
|
|
float3 b;
|
|
int c;
|
|
};
|
|
|
|
void main() {
|
|
const S tint_symbol = {1, float3(2.0f, 3.0f, 4.0f), 4};
|
|
float3 pos = tint_symbol.b;
|
|
return;
|
|
}
|
|
)";
|
|
EXPECT_EQ(expect, got);
|
|
}
|
|
|
|
TEST_F(HlslSanitizerTest, InlinePtrLetsBasic) {
|
|
// var v : i32;
|
|
// let p : ptr<function, i32> = &v;
|
|
// let x : i32 = *p;
|
|
auto* v = Var("v", ty.i32());
|
|
auto* p =
|
|
Const("p", ty.pointer<i32>(ast::StorageClass::kFunction), AddressOf(v));
|
|
auto* x = Var("x", ty.i32(), ast::StorageClass::kNone, Deref(p));
|
|
|
|
Func("main", ast::VariableList{}, ty.void_(),
|
|
{
|
|
Decl(v),
|
|
Decl(p),
|
|
Decl(x),
|
|
},
|
|
{
|
|
Stage(ast::PipelineStage::kFragment),
|
|
});
|
|
|
|
GeneratorImpl& gen = SanitizeAndBuild();
|
|
|
|
ASSERT_TRUE(gen.Generate()) << gen.error();
|
|
|
|
auto got = gen.result();
|
|
auto* expect = R"(void main() {
|
|
int v = 0;
|
|
int x = v;
|
|
return;
|
|
}
|
|
)";
|
|
EXPECT_EQ(expect, got);
|
|
}
|
|
|
|
TEST_F(HlslSanitizerTest, InlinePtrLetsComplexChain) {
|
|
// var a : array<mat4x4<f32>, 4>;
|
|
// let ap : ptr<function, array<mat4x4<f32>, 4>> = &a;
|
|
// let mp : ptr<function, mat4x4<f32>> = &(*ap)[3];
|
|
// let vp : ptr<function, vec4<f32>> = &(*mp)[2];
|
|
// let v : vec4<f32> = *vp;
|
|
auto* a = Var("a", ty.array(ty.mat4x4<f32>(), 4));
|
|
auto* ap = Const(
|
|
"ap",
|
|
ty.pointer(ty.array(ty.mat4x4<f32>(), 4), ast::StorageClass::kFunction),
|
|
AddressOf(a));
|
|
auto* mp =
|
|
Const("mp", ty.pointer(ty.mat4x4<f32>(), ast::StorageClass::kFunction),
|
|
AddressOf(IndexAccessor(Deref(ap), 3)));
|
|
auto* vp =
|
|
Const("vp", ty.pointer(ty.vec4<f32>(), ast::StorageClass::kFunction),
|
|
AddressOf(IndexAccessor(Deref(mp), 2)));
|
|
auto* v = Var("v", ty.vec4<f32>(), ast::StorageClass::kNone, Deref(vp));
|
|
|
|
Func("main", ast::VariableList{}, ty.void_(),
|
|
{
|
|
Decl(a),
|
|
Decl(ap),
|
|
Decl(mp),
|
|
Decl(vp),
|
|
Decl(v),
|
|
},
|
|
{
|
|
Stage(ast::PipelineStage::kFragment),
|
|
});
|
|
|
|
GeneratorImpl& gen = SanitizeAndBuild();
|
|
|
|
ASSERT_TRUE(gen.Generate()) << gen.error();
|
|
|
|
auto got = gen.result();
|
|
auto* expect = R"(void main() {
|
|
float4x4 a[4] = (float4x4[4])0;
|
|
float4 v = a[3][2];
|
|
return;
|
|
}
|
|
)";
|
|
EXPECT_EQ(expect, got);
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace hlsl
|
|
} // namespace writer
|
|
} // namespace tint
|