dawn-cmake/test/tint/statements/discard/helper_functions.wgsl.expected.msl
James Price 744d0eb4aa tint: Use "demote-to-helper" semantics for discard
Discard statements no longer affect the behavior or uniformity
analysis. Update the resolver, validator, and several tests to reflect
this.

Some E2E tests were removed as they had loops that are now considered
to be infinite.

Use the DemoteToHelper transform to emulate the correct semantics on
platforms where discard is (or may) terminate the invocation in a
manner that would affect derivative operations.

We no longer need the UnwindDiscardFunctions transform for HLSL, which
already implements the correct semantics. However, we still run the
DemoteToHelper transform for the HLSL backend due to issues with FXC's
handling of discard statements (see crbug.com/tint/1118).

Fixed: tint:1723
Change-Id: Ib49ff187919ae81c4af8675e1b66acd57e2ff7d2
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/109003
Reviewed-by: Ben Clayton <bclayton@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: James Price <jrprice@google.com>
2022-11-09 19:58:59 +00:00

26 lines
638 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void foo(device int* const tint_symbol_1, thread bool* const tint_symbol_2) {
if ((*(tint_symbol_1) < 0)) {
*(tint_symbol_2) = true;
}
}
void bar(thread bool* const tint_symbol_3, device float* const tint_symbol_4) {
if (!(*(tint_symbol_3))) {
*(tint_symbol_4) = dfdx(1.0f);
}
}
fragment void tint_symbol(device int* tint_symbol_5 [[buffer(0)]], device float* tint_symbol_7 [[buffer(1)]]) {
thread bool tint_symbol_6 = false;
foo(tint_symbol_5, &(tint_symbol_6));
bar(&(tint_symbol_6), tint_symbol_7);
if (tint_symbol_6) {
discard_fragment();
}
return;
}