vkd3d/tests/hlsl/return.shader_test
Giovanni Mascellani 51f13391e6 vkd3d-shader/ir: Introduce a simple control flow graph structurizer.
The structurizer is implemented along the lines of what is usually called
the "structured program theorem": the control flow is completely
virtualized by mean of an additional TEMP register which stores the
block index which is currently running. The whole program is then
converted to a huge switch construction enclosed in a loop, executing
at each iteration the appropriate block and updating the register
depending on block jump instruction.

The algorithm's generality is also its major weakness: it accepts any
input program, even if its CFG is not reducible, but the output
program lacks any useful convergence information. It satisfies the
letter of the SPIR-V requirements, but it is expected that it will
be very inefficient to run on a GPU (unless a downstream compiler is
able to devirtualize the control flow and do a proper convergence
analysis pass). The algorithm is however very simple, and good enough
to at least pass tests, enabling further development. A better
alternative is expected to be upstreamed incrementally.

Side note: the structured program theorem is often called the
Böhm-Jacopini theorem; Böhm and Jacopini did indeed prove a variation
of it, but their algorithm is different from what is commontly attributed
to them and implemented here, so I opted for not using their name.
2024-02-06 23:07:07 +01:00

257 lines
4.2 KiB
Plaintext

% Test early return from the entry point.
[pixel shader]
float4 main() : sv_target
{
return float4(0.1, 0.2, 0.3, 0.4);
return float4(0.5, 0.6, 0.7, 0.8);
}
[test]
draw quad
probe all rgba (0.1, 0.2, 0.3, 0.4)
[pixel shader]
void main(out float4 ret : sv_target)
{
ret = float4(0.1, 0.2, 0.3, 0.4);
return;
ret = float4(0.5, 0.6, 0.7, 0.8);
}
[test]
draw quad
probe all rgba (0.1, 0.2, 0.3, 0.4)
[pixel shader todo(sm<4)]
uniform float f;
float4 main() : sv_target
{
if (f < 0.5)
return float4(0.1, 0.2, 0.3, 0.4);
return float4(0.5, 0.6, 0.7, 0.8);
}
[test]
uniform 0 float 0.2
todo(sm<4) draw quad
probe all rgba (0.1, 0.2, 0.3, 0.4)
uniform 0 float 0.8
todo(sm<4) draw quad
probe all rgba (0.5, 0.6, 0.7, 0.8)
[pixel shader todo(sm<4)]
uniform float f;
void main(out float4 ret : sv_target)
{
ret = float4(0.1, 0.2, 0.3, 0.4);
if (f < 0.5)
{
ret += 0.1;
}
else
{
return;
ret += 0.3;
}
ret += 0.1;
}
[test]
uniform 0 float 0.2
todo(sm<4) draw quad
probe all rgba (0.3, 0.4, 0.5, 0.6)
uniform 0 float 0.8
todo(sm<4) draw quad
probe all rgba (0.1, 0.2, 0.3, 0.4)
[pixel shader todo(sm<4)]
uniform float f;
void main(out float4 ret : sv_target)
{
ret = float4(0.1, 0.2, 0.3, 0.4);
if (f < 0.3)
{
return;
}
ret += 0.1;
if (f < 0.7)
{
return;
}
ret += 0.3;
}
[test]
uniform 0 float 0.1
todo(sm<4) draw quad
probe all rgba (0.1, 0.2, 0.3, 0.4) 1
uniform 0 float 0.5
todo(sm<4) draw quad
probe all rgba (0.2, 0.3, 0.4, 0.5) 1
uniform 0 float 0.9
todo(sm<4) draw quad
probe all rgba (0.5, 0.6, 0.7, 0.8) 1
[pixel shader todo(sm<4)]
uniform float f;
void main(out float4 ret : sv_target)
{
ret = float4(0.1, 0.2, 0.3, 0.4);
if (f < 0.7)
{
if (f < 0.3)
return;
ret += 0.1;
}
ret += 0.3;
}
[test]
uniform 0 float 0.1
todo(sm<4) draw quad
probe all rgba (0.1, 0.2, 0.3, 0.4) 1
uniform 0 float 0.5
todo(sm<4) draw quad
probe all rgba (0.5, 0.6, 0.7, 0.8) 1
uniform 0 float 0.9
todo(sm<4) draw quad
probe all rgba (0.4, 0.5, 0.6, 0.7) 1
[pixel shader todo(sm<4)]
void main(out float4 ret : sv_target)
{
ret = float4(0.1, 0.2, 0.3, 0.4);
for (;;)
{
ret *= 2;
return;
ret *= 3;
}
ret += 0.1;
}
[test]
todo(sm<4) draw quad
probe all rgba (0.2, 0.4, 0.6, 0.8)
[pixel shader todo(sm<4)]
uniform float f;
void main(out float4 ret : sv_target)
{
int i;
ret = 0.1;
for (i = 0; i < 4; ++i)
{
if (ret.x > f)
return;
ret *= 2;
}
ret = 0.9;
}
[test]
uniform 0 float 0.0
todo(sm<4) draw quad
probe all rgba (0.1, 0.1, 0.1, 0.1) 1
uniform 0 float 0.1
todo(sm<4) draw quad
probe all rgba (0.2, 0.2, 0.2, 0.2) 1
uniform 0 float 0.3
todo(sm<4) draw quad
probe all rgba (0.4, 0.4, 0.4, 0.4) 1
uniform 0 float 0.7
todo(sm<4) draw quad
probe all rgba (0.8, 0.8, 0.8, 0.8) 1
uniform 0 float 0.9
todo(sm<4) draw quad
probe all rgba (0.9, 0.9, 0.9, 0.9) 1
[pixel shader todo(sm<4)]
uniform float f;
void main(out float4 ret : sv_target)
{
if (f < 0.5)
{
ret = 0.1;
for (;;)
{
ret *= 2;
return;
}
ret *= 3;
return;
}
else
{
ret = 0.4;
}
ret = 0.5;
}
[test]
uniform 0 float 0.2
todo(sm<4) draw quad
probe all rgba (0.2, 0.2, 0.2, 0.2)
uniform 0 float 0.8
todo(sm<4) draw quad
probe all rgba (0.5, 0.5, 0.5, 0.5)
[pixel shader todo(sm<4)]
uniform float4 f[3];
void main(out float4 ret : sv_target)
{
int i, j;
ret = 0.1;
for (i = 0; i < 3; ++i)
{
for (j = 0; j < 3; ++j)
{
if (ret.x > f[j].x)
return;
}
ret *= 2;
}
ret = 0.9;
}
[test]
uniform 0 float4 0.3 0.0 0.0 0.0
uniform 4 float4 0.0 0.0 0.0 0.0
uniform 8 float4 0.1 0.0 0.0 0.0
todo(sm<4) draw quad
probe all rgba (0.1, 0.1, 0.1, 0.1) 1
uniform 4 float4 0.35 0.0 0.0 0.0
todo(sm<4) draw quad
probe all rgba (0.2, 0.2, 0.2, 0.2) 1
uniform 8 float4 0.5 0.0 0.0 0.0
todo(sm<4) draw quad
probe all rgba (0.4, 0.4, 0.4, 0.4) 1
uniform 0 float4 1.0 0.0 0.0 0.0
todo(sm<4) draw quad
probe all rgba (0.4, 0.4, 0.4, 0.4) 1
uniform 4 float4 2.0 0.0 0.0 0.0
todo(sm<4) draw quad
probe all rgba (0.9, 0.9, 0.9, 0.9) 1