mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-17 17:05:31 +00:00
tint/transform: Fix ICE in HLSL backend
When referencing a pointer parameter with a 'let', but not using that let. Also fix a bunch of places where we used the old names for the pointer transforms. Bug: chromium:1433499 Change-Id: I8decefeacd6150bd6f7637f80e62b9cb62936235 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/127540 Kokoro: Kokoro <noreply+kokoro@google.com> Auto-Submit: Ben Clayton <bclayton@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
committed by
Dawn LUCI CQ
parent
63aa15467e
commit
559e5a2cde
@@ -132,6 +132,13 @@ struct SimplifyPointers::State {
|
||||
utils::Hashmap<const ast::Expression*, Symbol, 8> saved_vars;
|
||||
|
||||
bool needs_transform = false;
|
||||
for (auto* ty : ctx.src->Types()) {
|
||||
if (ty->Is<type::Pointer>()) {
|
||||
// Program contains pointers which need removing.
|
||||
needs_transform = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Find all the pointer-typed `let` declarations.
|
||||
// Note that these must be function-scoped, as module-scoped `let`s are not
|
||||
|
||||
@@ -28,16 +28,6 @@ TEST_F(SimplifyPointersTest, EmptyModule) {
|
||||
EXPECT_FALSE(ShouldRun<SimplifyPointers>(src));
|
||||
}
|
||||
|
||||
TEST_F(SimplifyPointersTest, NoAddressOf) {
|
||||
auto* src = R"(
|
||||
fn f(p : ptr<function, i32>) {
|
||||
var v : i32;
|
||||
}
|
||||
)";
|
||||
|
||||
EXPECT_FALSE(ShouldRun<SimplifyPointers>(src));
|
||||
}
|
||||
|
||||
TEST_F(SimplifyPointersTest, FoldPointer) {
|
||||
auto* src = R"(
|
||||
fn f() {
|
||||
@@ -59,6 +49,36 @@ fn f() {
|
||||
EXPECT_EQ(expect, str(got));
|
||||
}
|
||||
|
||||
TEST_F(SimplifyPointersTest, UnusedPointerParam) {
|
||||
auto* src = R"(
|
||||
fn f(p : ptr<function, i32>) {
|
||||
}
|
||||
)";
|
||||
|
||||
auto* expect = src;
|
||||
|
||||
auto got = Run<Unshadow, SimplifyPointers>(src);
|
||||
|
||||
EXPECT_EQ(expect, str(got));
|
||||
}
|
||||
|
||||
TEST_F(SimplifyPointersTest, ReferencedPointerParam) {
|
||||
auto* src = R"(
|
||||
fn f(p : ptr<function, i32>) {
|
||||
let x = p;
|
||||
}
|
||||
)";
|
||||
|
||||
auto* expect = R"(
|
||||
fn f(p : ptr<function, i32>) {
|
||||
}
|
||||
)";
|
||||
|
||||
auto got = Run<Unshadow, SimplifyPointers>(src);
|
||||
|
||||
EXPECT_EQ(expect, str(got));
|
||||
}
|
||||
|
||||
TEST_F(SimplifyPointersTest, AddressOfDeref) {
|
||||
auto* src = R"(
|
||||
fn f() {
|
||||
|
||||
@@ -2982,9 +2982,8 @@ bool GeneratorImpl::EmitType(utils::StringStream& out,
|
||||
out << "x" << mat->rows();
|
||||
}
|
||||
} else if (TINT_UNLIKELY(type->Is<type::Pointer>())) {
|
||||
TINT_ICE(Writer, diagnostics_)
|
||||
<< "Attempting to emit pointer type. These should have been removed "
|
||||
"with the InlinePointerLets transform";
|
||||
TINT_ICE(Writer, diagnostics_) << "Attempting to emit pointer type. These should have been "
|
||||
"removed with the SimplifyPointers transform";
|
||||
return false;
|
||||
} else if (type->Is<type::Sampler>()) {
|
||||
return false;
|
||||
|
||||
@@ -228,7 +228,7 @@ void main() {
|
||||
EXPECT_EQ(expect, got);
|
||||
}
|
||||
|
||||
TEST_F(GlslSanitizerTest, InlinePtrLetsBasic) {
|
||||
TEST_F(GlslSanitizerTest, SimplifyPointersBasic) {
|
||||
// var v : i32;
|
||||
// let p : ptr<function, i32> = &v;
|
||||
// let x : i32 = *p;
|
||||
@@ -267,7 +267,7 @@ void main() {
|
||||
EXPECT_EQ(expect, got);
|
||||
}
|
||||
|
||||
TEST_F(GlslSanitizerTest, InlinePtrLetsComplexChain) {
|
||||
TEST_F(GlslSanitizerTest, SimplifyPointersComplexChain) {
|
||||
// var a : array<mat4x4<f32>, 4u>;
|
||||
// let ap : ptr<function, array<mat4x4<f32>, 4u>> = &a;
|
||||
// let mp : ptr<function, mat4x4<f32>> = &(*ap)[3i];
|
||||
|
||||
@@ -281,15 +281,14 @@ SanitizedResult Sanitize(const Program* in, const Options& options) {
|
||||
// TODO(crbug.com/tint/1752): This is only necessary when FXC is being used.
|
||||
manager.Add<transform::DemoteToHelper>();
|
||||
|
||||
// ArrayLengthFromUniform must come after InlinePointerLets and Simplify, as
|
||||
// it assumes that the form of the array length argument is &var.array.
|
||||
// ArrayLengthFromUniform must come after SimplifyPointers as it assumes that the form of the
|
||||
// array length argument is &var.array.
|
||||
manager.Add<transform::ArrayLengthFromUniform>();
|
||||
data.Add<transform::ArrayLengthFromUniform::Config>(std::move(array_length_from_uniform_cfg));
|
||||
// DecomposeMemoryAccess must come after:
|
||||
// * InlinePointerLets, as we cannot take the address of calls to
|
||||
// DecomposeMemoryAccess::Intrinsic.
|
||||
// * Simplify, as we need to fold away the address-of and dereferences of
|
||||
// `*(&(intrinsic_load()))` expressions.
|
||||
// * SimplifyPointers, as we cannot take the address of calls to
|
||||
// DecomposeMemoryAccess::Intrinsic and we need to fold away the address-of and dereferences
|
||||
// of `*(&(intrinsic_load()))` expressions.
|
||||
// * RemovePhonies, as phonies can be assigned a pointer to a
|
||||
// non-constructible buffer, or dynamic array, which DMA cannot cope with.
|
||||
manager.Add<transform::DecomposeMemoryAccess>();
|
||||
@@ -4070,9 +4069,8 @@ bool GeneratorImpl::EmitType(utils::StringStream& out,
|
||||
return true;
|
||||
},
|
||||
[&](const type::Pointer*) {
|
||||
TINT_ICE(Writer, diagnostics_)
|
||||
<< "Attempting to emit pointer type. These should have been "
|
||||
"removed with the InlinePointerLets transform";
|
||||
TINT_ICE(Writer, diagnostics_) << "Attempting to emit pointer type. These should have "
|
||||
"been removed with the SimplifyPointers transform";
|
||||
return false;
|
||||
},
|
||||
[&](const type::Sampler* sampler) {
|
||||
|
||||
@@ -237,7 +237,7 @@ void main() {
|
||||
EXPECT_EQ(expect, got);
|
||||
}
|
||||
|
||||
TEST_F(HlslSanitizerTest, InlinePtrLetsBasic) {
|
||||
TEST_F(HlslSanitizerTest, SimplifyPointersBasic) {
|
||||
// var v : i32;
|
||||
// let p : ptr<function, i32> = &v;
|
||||
// let x : i32 = *p;
|
||||
@@ -269,7 +269,7 @@ TEST_F(HlslSanitizerTest, InlinePtrLetsBasic) {
|
||||
EXPECT_EQ(expect, got);
|
||||
}
|
||||
|
||||
TEST_F(HlslSanitizerTest, InlinePtrLetsComplexChain) {
|
||||
TEST_F(HlslSanitizerTest, SimplifyPointersComplexChain) {
|
||||
// var a : array<mat4x4<f32>, 4u>;
|
||||
// let ap : ptr<function, array<mat4x4<f32>, 4u>> = &a;
|
||||
// let mp : ptr<function, mat4x4<f32>> = &(*ap)[3i];
|
||||
|
||||
Reference in New Issue
Block a user