mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-06 12:15:43 +00:00
Performs basic peephole optimizations on the AST. Use in transform::Hlsl. Required to have the DecomposeStorageAccess transform operate correctly with the output of InlinePointerLets transform, specifically when declaring `let` pointer expressions to storage buffers. Fixed: tint:221 Fixed: tint:492 Fixed: tint:829 Change-Id: I536390921a6492378104e9c3c100d9e761294a27 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/51921 Commit-Queue: Ben Clayton <bclayton@chromium.org> Reviewed-by: David Neto <dneto@google.com>
34 lines
578 B
Plaintext
34 lines
578 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
struct Buf {
|
|
/* 0x0000 */ uint count;
|
|
/* 0x0004 */ uint data[50];
|
|
};
|
|
|
|
kernel void tint_symbol(const device Buf& b [[buffer(0)]]) {
|
|
uint i = 0u;
|
|
{
|
|
bool tint_msl_is_first_1 = true;
|
|
device uint* const p;
|
|
for(;;) {
|
|
if (!tint_msl_is_first_1) {
|
|
*(p) = (*(p) * 2u);
|
|
i = (i + 1u);
|
|
}
|
|
tint_msl_is_first_1 = false;
|
|
|
|
if ((i >= b.count)) {
|
|
break;
|
|
}
|
|
p = &(b.data[i]);
|
|
if (((i % 2u) == 0u)) {
|
|
continue;
|
|
}
|
|
*(p) = 0u;
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|